Opened 14 years ago
Closed 14 years ago
#4020 closed bug (fixed)
ID/Name Selector Bug
Reported by: | raymond | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3.2 |
Component: | selector | Version: | 1.3.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description (last modified by )
I was just using jQuery 1.3.1 when I came across an issue in IE7. When I click the button the value for the button will be set to "ON" when using IE7 but it works as expected in FF3:
Expected result: Value on hidden field should be set to "ON" when the button is clicked
Wrong result: The value for the button changed to "ON" when the button is clicked in IE7
Sample Code:
<form> <input type="hidden" name="button" value="" /> <input type="button" id="button" value = "Button" /> </form> <script type="text/javascript"> $(function() { $('#button').click(function(){ $("form input[name='button']").val('ON'); }) }); </script>
Change History (2)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 14 years ago by
Component: | unfilled → selector |
---|---|
Milestone: | 1.3.1 → 1.3.2 |
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Fixed in SVN rev [6207].