I\'ve got a problem making a click event on an HTML option element work.
click
option
Even a simple console.log(\'hello!\'); won\'t work.>
console.log(\'hello!\');
I would suggest you to use .on() instead of .bind().
$('#mySelect').on('change', function(){ var $this = $(this), $value = $this.val(); alert($value); });
jsFiddle