
Untitled
By:
jadjoubran on
Mar 27th, 2012 | syntax:
jQuery | size: 0.22 KB | hits: 31 | expires: Never
$(window).load(function(){
//load the rest of the images
$('img').each(function(){
var src = $(this).data('src');
if (src){
//fat girl here
$(this).removeData('src');
$(this).attr('src', src);
}
});
});