#7361 closed bug (worksforme)
$elem.show() hides the elment
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | high | Milestone: | 1.5 |
Component: | css | Version: | 1.4.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I tried this code to show or hide the element but it does not work in expected way(result is diffrent with jQuery 1.4.2).
code <style> #test{ display:"none";} </style>
<div id="test">Dispaly....</div>
<script>
$("#test").css({display:"block"});
$("#test").show(); </script>
Change History (2)
comment:1 Changed 12 years ago by
Component: | unfiled → css |
---|---|
Priority: | undecided → high |
Resolution: | → worksforme |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
First, Your example is invalid.
#test{ display:"none";}
Should be:
#test{ display:none;}
Second, after correcting it, I was able to reproduce the issue.
Lastly, I tested this issue with the latest jQuery development version and the issue has been resolved.
http://jsfiddle.net/rwaldron/tcY57/3/