Skip to content

Instantly share code, notes, and snippets.

@imwilsonxu
Created October 31, 2016 05:58
Show Gist options
  • Save imwilsonxu/cfbb48fb84adf5039e412861a5263b3f to your computer and use it in GitHub Desktop.
Save imwilsonxu/cfbb48fb84adf5039e412861a5263b3f to your computer and use it in GitHub Desktop.
Auto highlight selected value for bootstrap-select.
(function() {
$(".selectpicker").on("loaded.bs.select", function(e) {
if ($(this).val() > 0) {
$(this).selectpicker('setStyle', 'btn-warning', 'add');
}
}).on("changed.bs.select", function(e) {
if ($(this).val() > 0) {
$(this).selectpicker('setStyle', 'btn-warning', 'add');
} else {
$(this).selectpicker('setStyle', 'btn-warning', 'remove');
$(this).selectpicker('setStyle', 'btn-default', 'add');
}
});
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment