Opened 13 years ago
Closed 13 years ago
#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: | ||
Blocked by: | Blocking: |
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 (2)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
This has already been fixed in trunk.
Note: See
TracTickets for help on using
tickets.
More Info (sorry)
I'm using Ie8, Tried with Compatibility View, Same thing