jquery-editable-select
jquery-editable-select copied to clipboard
event select.editable-select run twice when use jquery().on()
$('#container').on('select.editable-select', '.editable-select', function (e, li) { // occur twice }
Hi @kamnab, could you please provide a full working sample for this?
var test = $("#test")
test.editableSelect();
test.on('select.editable-select', function (e) {
console.log('a')
});
that code fires 2 events...
I found workaround for people who use it: use only 'select' not 'select.editable-select' and it fires exactly 1 event