My application has dynamically added Dropdowns. The user can add as many as they need to.
I was traditionally using jQuery\'s live() method to detect w
live()
jquery verision x.x.x.js open editor, find jQuery.fn.extend
jQuery.fn.extend
add code
live: function( types, data, fn ) { jQuery( this.context ).on( types, this.selector, data, fn ); return this; },
Example : jquery-2.1.1.js --> line 7469 (jQuery.fn.extend)
Example images view