The jQuery $ .post () function does not work in IE. I tried to open the developer tools to find out if I get a console error, but by a miracle the function started to work.
This is the standard function $ .post ()
$.post('child_cb.php?type=check', { value: $(this).val() }, function(data) { console.log(data); if (data == 'true') { $(".check_case").removeClass('bad').addClass('good'); } else if (data == 'false') { $(".check_case").removeClass('good').addClass('bad'); } });
I see no reason why this will not work.
source share