selectr
selectr copied to clipboard
:white_check_mark: The coolest jQuery select plugin you've never seen
🚨 You need to enable Continuous Integration on all branches of this repository. 🚨 To enable Greenkeeper, you need to make sure that a [commit status](https://help.github.com/articles/about-statuses/) is reported on all...
An error occured on deselecting the last selected option, if first in list of options. After adding the missing ' in the function `deselectOption` to the command, deselection is working...
#https://github.com/caseyWebb/selectr/blob/12d92a56590791f7aa021fc56e7ae02b610da315/src/selectr.coffee#L47 If the multiple attribut is not set on the element - the "undefined" class will be added. It is in all cases where string interpolation is used. I would...
``` Selectr.DeselectOption = function(opt) { var currentSelectionCount, el; el = $(opt).parents('.selectr').prev(); $(opt).parents('.selectr').removeClass('max-selection-reached'); $(opt).removeClass('selected'); $("option[value=" + ($(opt).data('val')) + "]", el).prop('selected', false); currentSelectionCount = $('option:selected', el).length; $('.current-selection', $(opt).parents('.selectr')).text(currentSelectionCount > 0 ? currentSelectionCount...
Hi, thanks for this useful plugin.. I have the following problem: I initialize the plugin, then I make a ajax query to fill the previous selected options, then, I can't...