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

JavaScript

 
AnswerRe: JavaScript Framework Pin
DaveAuld11-May-11 8:39
professionalDaveAuld11-May-11 8:39 
GeneralRe: JavaScript Framework Pin
Md. Marufuzzaman11-May-11 9:22
professionalMd. Marufuzzaman11-May-11 9:22 
GeneralRe: JavaScript Framework Pin
AjeetPrabhakar16-May-11 19:16
AjeetPrabhakar16-May-11 19:16 
GeneralRe: JavaScript Framework Pin
DaveAuld16-May-11 19:41
professionalDaveAuld16-May-11 19:41 
AnswerRe: JavaScript Framework Pin
Manfred Rudolf Bihy12-May-11 22:41
professionalManfred Rudolf Bihy12-May-11 22:41 
AnswerRe: JavaScript Framework Pin
Ankur\m/16-May-11 20:38
professionalAnkur\m/16-May-11 20:38 
Questioneval() Vs setTimeout() Pin
Ali Al Omairi(Abu AlHassan)10-May-11 3:37
professionalAli Al Omairi(Abu AlHassan)10-May-11 3:37 
AnswerRe: eval() Vs setTimeout() Pin
Pete O'Hanlon10-May-11 3:57
mvePete O'Hanlon10-May-11 3:57 
GeneralRe: eval() Vs setTimeout() Pin
Manfred Rudolf Bihy12-May-11 22:42
professionalManfred Rudolf Bihy12-May-11 22:42 
GeneralRe: eval() Vs setTimeout() Pin
AspDotNetDev14-May-11 22:44
protectorAspDotNetDev14-May-11 22:44 
GeneralRe: eval() Vs setTimeout() Pin
Ankur\m/16-May-11 20:42
professionalAnkur\m/16-May-11 20:42 
GeneralRe: eval() Vs setTimeout() Pin
AspDotNetDev16-May-11 20:46
protectorAspDotNetDev16-May-11 20:46 
GeneralRe: eval() Vs setTimeout() Pin
Ankur\m/16-May-11 20:58
professionalAnkur\m/16-May-11 20:58 
GeneralRe: eval() Vs setTimeout() Pin
AspDotNetDev16-May-11 21:02
protectorAspDotNetDev16-May-11 21:02 
GeneralRe: eval() Vs setTimeout() Pin
Ankur\m/16-May-11 21:15
professionalAnkur\m/16-May-11 21:15 
AnswerRe: eval() Vs setTimeout() Pin
AspDotNetDev14-May-11 22:46
protectorAspDotNetDev14-May-11 22:46 
GeneralRe: eval() Vs setTimeout() Pin
Ali Al Omairi(Abu AlHassan)15-May-11 3:44
professionalAli Al Omairi(Abu AlHassan)15-May-11 3:44 
GeneralRe: eval() Vs setTimeout() Pin
AspDotNetDev15-May-11 6:56
protectorAspDotNetDev15-May-11 6:56 
GeneralRe: eval() Vs setTimeout() Pin
Ali Al Omairi(Abu AlHassan)15-May-11 11:04
professionalAli Al Omairi(Abu AlHassan)15-May-11 11:04 
Questionjquery wait Pin
fififlowertot5-May-11 0:48
fififlowertot5-May-11 0:48 
Hi ,
I on button click I open a jquery modal with iframe which loads another aspx page.
Now this other aspx page makes a call to webservice and then loads data. I have the service call on the page load of this page.
So there a gap between the modal window opens and the data load in it.
How can I implement a wait gif or just a text like say 'processing' till the data loads?

Thanks

My code is as below



<div id="mydiv" >
       <iframe id ="popup"  width ="100%" height="50%"></iframe>
   </div>


jquery/javascript

function openDialog() {

           var url = "test.aspx?NAME=" + encodeURIComponent($("#<%=txtName.ClientID %>").val());
           $("#popup").attr("src", url);

           $("#mydiv").dialog('open');
       }

$(document).ready(function() {

           $("#mydiv").dialog({
               autoOpen: false,
               modal: true,
               width: 500,
               scroll: true

           });

       });

AnswerRe: jquery wait Pin
Not Active5-May-11 2:21
mentorNot Active5-May-11 2:21 
QuestionWhy SetTimeout doesn't work inside object? Pin
Olli Ikonen2-May-11 11:19
Olli Ikonen2-May-11 11:19 
AnswerRe: Why SetTimeout doesn't work inside object? Pin
AspDotNetDev2-May-11 11:39
protectorAspDotNetDev2-May-11 11:39 
GeneralRe: Why SetTimeout doesn't work inside object? Pin
Olli Ikonen2-May-11 13:14
Olli Ikonen2-May-11 13:14 
GeneralRe: Why SetTimeout doesn't work inside object? Pin
AspDotNetDev2-May-11 13:19
protectorAspDotNetDev2-May-11 13:19 

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.