Closed Foine closed 12 years ago
I had an issue in deleting tags which contains the character '. The value wasn't removed in the select. So I changed the _popSelect method :
_popSelect: function(text) { // before // this.select.children('option[value="' + text + '"]').remove(); this.select.children().each(function(index) { if($(this).val() == text) { $(this).remove(); } }); }
That works :)
Brilliant. Can you please create a pull request with the changes?
Thanks. I will do that has soon as possible.
I had an issue in deleting tags which contains the character '. The value wasn't removed in the select. So I changed the _popSelect method :
That works :)