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?
|
feedback
|
|
Assuming you have this at the beginning:
when you call:
you will get:
while:
does:
so, yes there's a difference. | |||||||
feedback
|
|
From the jQuery show() documentation:
| |||
|
feedback
|
|
If you had hidden | |||||||
feedback
|