The jQuery $.post() function is not working in IE. I tried to open developer tools to see if I was getting a console error, but miraculously the function started working.
It is just a standard $.post() function
$.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 it wouldn't work.