Answer
Apr 27, 2009 - 01:53 AM
There are 2 ways for setting time interval for Ajax call using below JavaScript function
1) self.setInterval('showRmtInstaller()',1000);
2) self.setTimeout('showRmtInstaller()',3000);
Above both function works fine, it have 2 parameters 1) Ajax call function name 2) time interval it is in mili second i.e 1000 = 1 sec
1) self.setInterval('showRmtInstaller()',1000);
2) self.setTimeout('showRmtInstaller()',3000);
Above both function works fine, it have 2 parameters 1) Ajax call function name 2) time interval it is in mili second i.e 1000 = 1 sec
Add New Comment