vote up 5 vote down star

Do they set display:none or visibility: hidden?

I'm pretty sure display:none takes the element out of the normal flow, whilst visibility:hidden just hides the element but still has a reserved space for it.

Should I just go download the unpacked version and study it or does someone have a quick answer?

flag

2 Answers

vote up 17 vote down check

It uses display.

Edit: And from John Sheehan's comment on this answer, which I agree with:

You should go view the unpacked source anyway just to familiarize yourself with it

Edit 2: Comments have mentioned using Firebug to discover what is happening. Indeed, I actually went to the jQuery docs and used the Safari Web Inspector to see what happened on the hide() demo to be sure of my answer.

link|flag
This is correct. You should go view the unpacked source anyway just to familiarize yourself with it – John Sheehan Oct 27 '08 at 6:45
Also, using FireBug with FireFox and observing the changes in real-time on elements as you use jQuery is helpful (at least I've found it to be so) – chadmyers Oct 27 '08 at 6:54
Voting up - I always develop with the unpacked code in case (well, actually WHEN) I need to debug. I'll ship with the packed code. – paxdiablo Oct 27 '08 at 7:09
Thank you, I have never looked at the unpacked version. Though I might soon. I did use Firebug to view the updated DOM an you are indeed correct. Thank you very much! – alex Oct 28 '08 at 0:50
vote up 1 vote down

It uses display, and for this type of thing you can use Firebug to actually examine what happens to the DOM.

link|flag

Your Answer

Get an OpenID
or

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