jquery Event Delegation
I am attempting to rewrite a snippet of code using event delegation (in the hopes that it will stop conflict with another snippiet of js). but I've broken the code Original //to scale up on hover var current_h = null; var current_w = null; $('.piccon').hover( function(){ current_h = $(this, 'img')[0].height; current_w = $(this, 'img')[0].width; $(this).stop(true, false).animate({width: (current_w * 2.7), height: (current_h * 2.7)}, 900); }, function(){ $(this).stop(true, false).animate({width: current_w + 'px', height: current_h + 'px'}, 400); } ); //using event delegation //to scale up on