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.

link|improve this question

65% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Why don't you just a class to the html tag right after you declare it (with javascript) and use CSS to hide the element ?

Javascript

<script type="text/javascript">
document.documentElement.className = 'js';
</script>

Css rule (in a stylesheet, or in the head as well)

.js #element{display:none;}

just add the above inside the page <head> tag and you should be set.

Demo: http://jsfiddle.net/C2jdX/

link|improve this answer
@T.J. Crowder I am targeting the <html> tag, which should always be there .. – Gaby aka G. Petrioli Feb 17 '11 at 15:32
@T.J Crowder i am not hiding the page. the rule is .js #element so it hides the specific element only. It is the fastest way to notify the DOM that JS is available, and if so use natural means (Css) to hide what you want. – Gaby aka G. Petrioli Feb 17 '11 at 15:37
@Gaby: I am just so flippin' tired today. Sorry, man. With you now. – T.J. Crowder Feb 17 '11 at 15:41
@T.J. no worries. We all have those days .. – Gaby aka G. Petrioli Feb 17 '11 at 15:44
That is a genius idea! I would have never thought of that. I will try this asap – Designer023 Feb 17 '11 at 15:47
show 3 more comments
feedback

To isolate the cause, and work around it if it turns out to be intractable, you might consider hiding it using inline script just before the closing body tag, rather than via the ready handler. E.g.:

<!DOCTYPE html>
<html>
<head>
<!-- blah blah blah -->
<script src='path_to/jquery.js'></script>
</head>
<body>
<!-- blah blah blah -->
<div id='element'>...</div>
<!-- blah blah blah -->
<script>
    $('#element').hide();
</script>
</body>
</html>

As long as the script follows the closing of the element in question, it should be found.

Live Example

I assume there's a good reason for hiding it only when scripts run (progressive enhancement, that kind of thing).

References:

link|improve this answer
I will give this a try and see what happens. – Designer023 Feb 17 '11 at 15:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.