How do I delay some jQuery / JavaScript function until all the images on a page have finished loading? Actually, the jQuery function I\'m talking about is for setting the offset
just write the function under a variable like
function newfunction(){ //put all the stuff here }
after that call this function on every image load like
$('img').load(function(){ newfunction() })
from this the newfunction will call everytime a new image load.