IE doesn’t recognise “select option”.click()
on Friday 14th November, 2008 Gabe speculated thusly…Instead of:
$(’#ranges option’).click(function() {
var val = $(this).val();
//do something with val
});
Had to change it to:
$(’#ranges’).change(function() {
var val = $(this).val();
//do something with val
});