0
kicks
Old School JavaScript Page Load (revisited)
Remember back in the 90's when all the rage on your webpage was to have a loader div that displayed until the page loaded. Well there back. Here's a quick one liner from jquery page loader it was again too easy and too cool. I added a style display:none; to a div then in load I do a $('mydiv').fadeTo(0,0).fadeTo(500,1);...