Opened 11 years ago
Closed 11 years ago
#12644 closed bug (notabug)
Tag select and .on() method problem
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.8.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hi!
I find a bug on jQuery Core (ver. 1.8.1 - 1.8.2).
When I use the methos on('change') on a select tag, it don't work. If instead of .on('change') I use .live('change') everything works regularly...
Example: DON'T WORK
jq( '#structures' ).on( 'change', function( ) { alert( 'COME ON!!!!!' ); });
WORK
jq( '#structures' ).live( 'change', function( ) { alert( 'COME ON!!!!!' ); });
I try with ver. 1.8.1 and 1.8.2.
Note: See
TracTickets for help on using
tickets.
You're using it wrong. Please ask for help on our forum or StackOverflow.