Bug Tracker

Opened 11 years ago

Closed 11 years ago

#12644 closed bug (notabug)

Tag select and .on() method problem

Reported by: davide.falchetto@… 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.

Change History (1)

comment:1 Changed 11 years ago by dmethvin

Resolution: notabug
Status: newclosed

You're using it wrong. Please ask for help on our forum or StackOverflow.

Note: See TracTickets for help on using tickets.