Modify ↓
Ticket #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: | ||
| Blocking: | Blocked by: |
Description (last modified by dmethvin) (diff)
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
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.
