Modify ↓
Ticket #7361 (closed bug: worksforme)
$elem.show() hides the elment
| Reported by: | anoop26667@… | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | 1.5 |
| Component: | css | Version: | 1.4.3 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
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/