up vote 3 down vote favorite
share [g+] share [fb]

I just got a script to work by changing

$('#thisElement').show();

to

$('#thisElement').css({'display':'block'});

where #thisElement had been loaded as having display:none;

Is there a fundamental difference in these two expressions?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Assuming you have this at the beginning:

<span id="thisElement" style="display: none;">Foo</span>

when you call:

$('#thisElement').show();

you will get:

<span id="thisElement" style="">Foo</span>

while:

$('#thisElement').css({'display':'block'});

does:

<span id="thisElement" style="display: block;">Foo</span>

so, yes there's a difference.

link|improve this answer
That's not what it says here. – Isaac Lubow Sep 4 '10 at 9:00
3  
I just tried this and it is in fact correct. I think the jQuery documentation is a bit unclear. When you call show() after calling hide(), the value is restored to what it was initially. If you call show() and hide() was never called, it sets the display value to an empty string. (see: james.padolsey.com/jquery/#v=1.4&fn=show) – takteek Sep 4 '10 at 9:12
feedback

From the jQuery show() documentation:

This is roughly equivalent to calling .css('display', 'block'), except that the display property is restored to whatever it was initially. If an element has a display value of inline, then is hidden and shown, it will once again be displayed inline.

link|improve this answer
feedback

If you had hidden #thisElement using $('#thisElement').hide();, and it had a display property that was not block, show() restores whatever the value was before you hid it.

link|improve this answer
Seriously? show() won't show a hidden element unless it was hide()-ed first (or has an inline style)? How did I not trip over this sooner? – Isaac Lubow Sep 4 '10 at 9:18
I'm saying that if you had set a different display style on it then it restores that value. It can show any hidden element. – BoltClock Sep 4 '10 at 9:21
But it didn't. That was why I asked the question. Oddly, actually, I put an alert in, to see if the script was really executing. And with the alert present, show() did execute. So the likely explanation is that show() takes longer to execute. – Isaac Lubow Sep 4 '10 at 9:21
feedback

Your Answer

 
or
required, but never shown

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