Click here to Skip to main content
15,886,873 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Jquery - Setting focus on Canvas Pin
jkirkerx2-Apr-13 6:38
professionaljkirkerx2-Apr-13 6:38 
GeneralRe: Jquery - Setting focus on Canvas Pin
Dennis E White2-Apr-13 6:42
professionalDennis E White2-Apr-13 6:42 
GeneralRe: Jquery - Setting focus on Canvas Pin
Simon Lee Shugar3-Apr-13 12:50
Simon Lee Shugar3-Apr-13 12:50 
AnswerRe: Jquery - Setting focus on Canvas Pin
AspDotNetDev7-Apr-13 13:10
protectorAspDotNetDev7-Apr-13 13:10 
GeneralRe: Jquery - Setting focus on Canvas Pin
Simon Lee Shugar7-Apr-13 21:34
Simon Lee Shugar7-Apr-13 21:34 
QuestionAJAX Javascript ShowModalDialogBox in IE 7 and above not working Pin
unniyadan28-Mar-13 20:53
unniyadan28-Mar-13 20:53 
AnswerRe: AJAX Javascript ShowModalDialogBox in IE 7 and above not working Pin
Prasad Khandekar11-Apr-13 3:44
professionalPrasad Khandekar11-Apr-13 3:44 
QuestionAJ Pin
unniyadan28-Mar-13 20:52
unniyadan28-Mar-13 20:52 
0 I am trying to achive a ause functionality in javascript.

I am making an asynchronous AJAX call and trying to achive synhronous functionality of AJAX. I want to pause the javascript until i receive the AJAX response for the asyn call of AJAX. Due to some reason i am not using the AJAX synchronous call which will solve my problem.

Once i make a call i use the following two functions to pause the JS

function pause2(numberMillis) {
var dialogScript = "window.setTimeout(" +
" function () { document.write(' '); window.close(); }, "
+ numberMillis + ");";
var result = window.showModalDialog('javascript.document.writeln(' +
'"<script>' + dialogScript + '<' + '/script>")');
}

function pause3()
{

do
{
if(lmsCommitTimeOut<9000){
lmsCommitTimeOut=lmsCommitTimeOut+1000;
pause2(1000);
}
else
{
//alert("TimeOut");
lmsCommitStatus="false";
return;
}

}while(readStateAchived=="false")

}

I call the pause3(); function which internally calls the pause2(1000) for every 1sec until i get the ajax response back, which i check with the help of a js variable "readStateAchived".

This is working well in IE6, but in IE7 it is poping up the modal window and not getting closed, I have to close it manually.

Can anyone help me with this?

Thank you.
QuestionJquery JqGrid Pin
Member 962382927-Mar-13 2:30
professionalMember 962382927-Mar-13 2:30 
AnswerRe: Jquery JqGrid Pin
Jasmine250127-Mar-13 7:48
Jasmine250127-Mar-13 7:48 
QuestionBall to Ball collision handling Pin
SRJ9226-Mar-13 14:19
SRJ9226-Mar-13 14:19 
AnswerRe: Ball to Ball collision handling Pin
Kenneth Haugland26-Mar-13 15:29
mvaKenneth Haugland26-Mar-13 15:29 
GeneralRe: Ball to Ball collision handling Pin
dusty_dex26-Mar-13 21:00
dusty_dex26-Mar-13 21:00 
GeneralRe: Ball to Ball collision handling Pin
Kenneth Haugland26-Mar-13 22:01
mvaKenneth Haugland26-Mar-13 22:01 
AnswerRe: Ball to Ball collision handling Pin
SRJ9227-Mar-13 4:04
SRJ9227-Mar-13 4:04 
QuestionAjax request call using jquery Pin
Raj G121-Mar-13 2:49
Raj G121-Mar-13 2:49 
GeneralRe: Ajax request call using jquery Pin
dusty_dex21-Mar-13 8:33
dusty_dex21-Mar-13 8:33 
GeneralRe: Ajax request call using jquery Pin
jkirkerx21-Mar-13 9:24
professionaljkirkerx21-Mar-13 9:24 
GeneralSlide show Pin
Tichaona J21-Mar-13 0:10
Tichaona J21-Mar-13 0:10 
GeneralRe: Slide show Pin
Graham Breach21-Mar-13 1:37
Graham Breach21-Mar-13 1:37 
GeneralRe: Slide show Pin
jkirkerx21-Mar-13 7:55
professionaljkirkerx21-Mar-13 7:55 
GeneralRe: Slide show Pin
alisener198022-Mar-13 9:41
alisener198022-Mar-13 9:41 
QuestionA question to dust_dex Pin
Hakan Bulut20-Mar-13 22:51
Hakan Bulut20-Mar-13 22:51 
AnswerRe: A question to dust_dex Pin
dusty_dex21-Mar-13 5:29
dusty_dex21-Mar-13 5:29 
GeneralRe: A question to dust_dex Pin
Hakan Bulut24-Mar-13 21:13
Hakan Bulut24-Mar-13 21:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.