My code works perfectly in FF, Safari and Chrome... just in IE 7 and 8 this happens...
My JQuery AJAX post looks like this:
$.post( 'page.php', { test: 'testing' }, function(r){
alert('Data: ' + r);
});
Now, in IE, if the response (r) comes back blank, it will display the alert. However, if there is anything returned in the r (even if it's just a digit such a 1), it doesn't show the alert. No errors come up, it just doesn't show the callback...
Any ideas what might be wrong?