Skip to content

Instantly share code, notes, and snippets.

@picandocodigo
Created February 19, 2016 22:39
Show Gist options
  • Save picandocodigo/72befb2107cf60cfbc80 to your computer and use it in GitHub Desktop.
Save picandocodigo/72befb2107cf60cfbc80 to your computer and use it in GitHub Desktop.
Limit a <select> checked count
// interests is a <select multiple> element
var interests = document.getElementById('interests');
interests.addEventListener('change', function(event){
var selected = this.querySelectorAll("option:checked");
if (selected.length > 3){
selected[0].selected = false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment