I wrote a little jQuery that hides a specific element when loading a page, which works fine on Mac browsers, but when I try to use it on an iPad, the page appears noticeably when the element appears and then disappears. This is the iPad that is causing the problem, in which case I may have to review the page loading process.
To hide the element I'm using:
$(document).ready(function() {
$('#element').hide();
});
Another jQuery later shows the element when I click on things, so I could hide it with css, but this will not degrade the quality in the absence of js.
source
share