I have written a bit of jQuery that hides a certain element on page load, which works seamlessly on browsers on a mac, but when I try it on the iPad there is a noticable poping of the page as the element appears and then disappears. Is this the iPad that is causing the problem, in which case I may have to rethink my page loading process.
To hide the element I am using:
$(document).ready(function() {
$('#element').hide();
});
Other jQuery later shows the element when I click on things so I could possible hide it using css but that won't degrade nicely on the absence of js.