I have a very simple jQuery function that hides most elements until the page has finished loading. This function runs on mac and iOS4 but does not seem to be recognized by iOS5. Any suggestions?
$(window).load(function () {
$('.loading').fadeIn(500).removeClass('loading');
$('#giffy').hide();
});
Is jQuery being called before your script runs?
-Or-
Have you tried using a different convention like: