I have this simple script:
$(document).ready(function() {
$('select').children().click(function() {
$('option').not(this).remove();
});
});
As the subject says - this script doesn't work in IE and Safari. I have tried everything, and came to a conclusion, that there's a problem with the click event - it just doesn't work. Children collection exists - when I replace click() with each(), and alert 'this' it's ok. Any suggestions?