Hello
Im attempting to get a Jquery image preloader to start the "loading.gif" and image preloading areas to start immediately on page open (if that's even a proper term) and I have been experimenting with javascript placement and other things, but it always loads a bit too late for my tastes.
Here is the URL
http://eleven23.net/beta/work/web/lounge22-preload.php
There are a few variables im experimenting with to get it to load faster
Which one should I use?
$(window).bind("load", function() {
- or -
$(document).ready (function() {
Also Ive placed the inline javascript right before </body>
hoping that would also speed the jquery start time.
Any suggestions?