is the jQuery function "change()" working in IE ?
I usually use it to detect changes in forms (select/unselect check boxes), and submit them automatically without having to click on submit button (which is hided).
i.e.
$("#views-exposed-form-Portfolio-page-1").change(function(){
$("#views-exposed-form-Portfolio-page-1").submit();
});
But in Ie it doesn't work. It seems I have to use "click" instead. thanks
Solution in IE:
if (navigator.appName == 'Microsoft Internet Explorer') {
$(".option").click(function(){
$("#loadingOverlay").css('display','block');
if ($(this).children().is(':checked')) {
$(this).children().attr('checked', '');
} else {
$(this).children().attr('checked', 'checked');
}
$("#views-exposed-form-Portfolio-page-1").submit();
});
}