Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have an extremely simple $.post function that works perfectly in all the normal browsers. But in IE (I tested 7 & 8) it just doesn't happen.

console.log('1');

$.post('home.php', {'a':'b'}, function(data){

    console.log('2');

});

When I run this in FireFox, my Firebug console shows 1, then 2.
Internet Explorer doesn't get past 1. I've had problems before where it thinks it's cross-browser because of the absence of www but that's not the case.

I don't see where it could be going wrong.

Also changing input to { a:'b' } doesn't work so it can't be the variables (you'd think).

EDIT: Simplified to simpler not-working version

EDIT:

There seems to be going something wrong with the variables, when I change this:

$.post('home.php', {'a':'b'}, function(data){

to

$.post('home.php', function(data){

It works..

share|improve this question
1  
Not sure, but string might be a reserved word in IE. Maybe try changing it to something else? Also, lol @ the normal browsers. I feel your pain. – Bojangles Aug 8 '11 at 14:41
That sounded like it should totally be the problem, however when prefixing every variable with abc it still doesn't work :/ – Kokos Aug 8 '11 at 14:47
Have a look at what's happening at the network level with Fiddler, Wireshark, etc. Maybe there's a server-side error that's preventing the response from being processed properly? – RichieHindle Aug 8 '11 at 14:54
Hmm, I have no experience with these programs but I will try it out tomorrow. I thought there would be an extremely simple solution and I'm leaving work in a few minutes :( – Kokos Aug 8 '11 at 14:56
1  
For troubleshooting I would switch the the $.ajax function so you can use both the success, error and beforeSend callback functions. You can put logging in each one of those to see if they're being hit. Did you answer...are you seeing the ajax post on the server? – BZink Aug 8 '11 at 15:06
show 2 more comments

1 Answer

up vote 4 down vote accepted

Do you have the debug console visible in IE? console.log() will prevent the rest of the script from running on IE if the console isn't visible.

share|improve this answer
Yea, I have it open and see 1 and 2 appear simultaniously, and then nothing. – Kokos Aug 8 '11 at 14:48
+1, with that mind this script should help that issue » benalman.com/projects/javascript-debug-console-log – Ben Everard Aug 8 '11 at 14:48
Also, if that was true I wouldn't see the second console.log() either would I? – Kokos Aug 8 '11 at 14:51
@Kokos: If you've discovered a solution or a workaround yourself, you should post it as an answer and accept it. – RichieHindle Aug 9 '11 at 12:13
I haven't, I can't figure out where they are colliding and the problem turns out to be something completely different from what I originally posted. I wanted to delete the question but I can't. – Kokos Aug 9 '11 at 12:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.