Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: jadjoubran on Mar 27th, 2012  |  syntax: jQuery  |  size: 0.22 KB  |  hits: 31  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $(window).load(function(){
  2.         //load the rest of the images
  3.         $('img').each(function(){
  4.                 var src = $(this).data('src');
  5.                 if (src){
  6.                         //fat girl here
  7.                         $(this).removeData('src');
  8.                         $(this).attr('src', src);
  9.                 }
  10.         });
  11. });