Skip to content

Instantly share code, notes, and snippets.

@MatrixFrog
Created March 11, 2012 09:39
Show Gist options
  • Save MatrixFrog/2015746 to your computer and use it in GitHub Desktop.
Save MatrixFrog/2015746 to your computer and use it in GitHub Desktop.
select event behavior
<select id="s">
<option value="a">a</option>
<option value="b">b</option>
</select>
<script>
var s = document.getElementById('s');
s.onclick = function() {
console.log('click');
}
s.onchange = function() {
console.log('change');
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment