- Jquery hover function cursor hover where it shouldn't
- // bind hover on the anchor element
- $("#nav-shadow li a").hover(function() {
- var e = this;
- // remove the .find('a') as 'e' is the anchor
- $(e).stop().animate({
- ...
- }, 250, function() {
- ...
- });
- // use .sibling() instead of .find('img')
- $(e).siblings("img.width320").stop().animate({
- ...
- }, 250);
- }, function() {
- ...
- });