Modify ↓
Ticket #6020 (closed bug: worksforme)
Change event not fired
| Reported by: | fireout | Owned by: | brandon |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4.2 |
| Component: | event | Version: | 1.4.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
I'm having this problem with IE but not Firefox ...
<script type="text/javascript">
$(document).ready(function() {
$('#test').change(function(e) { alert($(this).val()); });
});
</script>
...
<input id="test" />
...
Change event doesn't fire on IE.
I changed the code locally: line 2218:
if (val === data) {
removed the data === undefined
Not sure this is the best way to fix it.
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.

More Info (sorry)
I'm using Ie8, Tried with Compatibility View, Same thing