I have a mobile site, with all the content on one PHP page, and the pages (or div\'s rather), are swapped with jQuery. I want to speed up the load time, and the bulk of what has
you can use the jquery load to load the image after the dom is completed to load
$(function(){ $("#imgUser").load("images/testimg.jpg"); });