I have tried using .load() and .ready()
My image is pretty big and when it loads, it loads in sections from top to bottom. Is there any way to make the image show up all at once when it is fully loaded and ready to be FULLY seen?
$('img.touch').hide();
$('img.touch').ready(function() {
$('img.touch').show();
});
The last thing I tried was that code up above... Any help would be great
Thanks