Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$.get(
'http://request.url',function(response){
document.write(response.returnText);
});

the ajax url need a long time to response, when this request is processing, the page will not response, such as all of elements of links can not be clicked.

I know ajax is a async request, and don't block main (page) thread, but everybody, why the page not responsed?

share|improve this question
2  
Your problem might be the content you are loading. Nothing can be said without more info. – hussain Sep 27 '12 at 6:17
firebug tell me the main request is finished. but I see firebug didn't tell us more things, I can't see many async request are not ajax and not shown in firebug's console. – yylead Sep 27 '12 at 8:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.