$(function(){ $('img').each(function(){ $(this).mouseover(function(){ alert($(this).attr('width').attr('height').attr('src') ); })})});
$(function(){ $('img').each(function(){ $(this).mouseenter(function(){ alert([this.width,this.height,this.src]) }) }) })