Click here to Skip to main content
15,915,019 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Java Script Slider Pin
Member 1146339918-Mar-15 2:43
Member 1146339918-Mar-15 2:43 
GeneralRe: Java Script Slider Pin
Afzaal Ahmad Zeeshan18-Mar-15 3:47
professionalAfzaal Ahmad Zeeshan18-Mar-15 3:47 
Questiongetting JSON data in much smaller way. Pin
Asif Rehman14-Mar-15 21:01
Asif Rehman14-Mar-15 21:01 
AnswerRe: getting JSON data in much smaller way. Pin
NAEEM272716-Mar-15 21:53
NAEEM272716-Mar-15 21:53 
AnswerRe: getting JSON data in much smaller way. Pin
Kornfeld Eliyahu Peter18-Mar-15 1:39
professionalKornfeld Eliyahu Peter18-Mar-15 1:39 
QuestionRe: getting JSON data in much smaller way. Pin
Asif Rehman19-Mar-15 0:25
Asif Rehman19-Mar-15 0:25 
AnswerRe: getting JSON data in much smaller way. Pin
Kornfeld Eliyahu Peter19-Mar-15 0:35
professionalKornfeld Eliyahu Peter19-Mar-15 0:35 
QuestionConnect a radio button, select box, and checkbox within a function. Pin
Member 1150835012-Mar-15 17:53
Member 1150835012-Mar-15 17:53 
QuestionThe Timer displayed is 1 hr (HH:MM:SS) in decrement order. I have to display a pop out when 50 mints complete after that remaining 10 mints one pop up should display saying 10 mints with 0 sec. After that for every 2 mintues the pop up appear showin Pin
Member 115026795-Mar-15 18:39
Member 115026795-Mar-15 18:39 
QuestionRe: The Timer displayed is 1 hr (HH:MM:SS) in decrement order. I have to display a pop out when 50 mints complete after that remaining 10 mints one pop up should display saying 10 mints with 0 sec. After that for every 2 mintues the pop up appear sh Pin
ZurdoDev11-Mar-15 9:47
professionalZurdoDev11-Mar-15 9:47 
QuestionHow I make a javascript wedget to place another website wedget Pin
Member 115008415-Mar-15 1:19
Member 115008415-Mar-15 1:19 
QuestionUnit testing for JavaScript/JQuery Code Pin
SaranshSrivastava28-Feb-15 20:53
SaranshSrivastava28-Feb-15 20:53 
Questionimage preview and save to a folder Pin
Member 1116631824-Feb-15 6:35
professionalMember 1116631824-Feb-15 6:35 
AnswerRe: image preview and save to a folder Pin
ZurdoDev24-Feb-15 11:01
professionalZurdoDev24-Feb-15 11:01 
AnswerRe: image preview and save to a folder Pin
Afzaal Ahmad Zeeshan28-Feb-15 22:06
professionalAfzaal Ahmad Zeeshan28-Feb-15 22:06 
GeneralRe: image preview and save to a folder Pin
Afzaal Ahmad Zeeshan16-Jun-15 5:43
professionalAfzaal Ahmad Zeeshan16-Jun-15 5:43 
GeneralRe: image preview and save to a folder Pin
Simewu16-Jun-15 12:08
professionalSimewu16-Jun-15 12:08 
AnswerRe: image preview and save to a folder Pin
Simewu16-Jun-15 12:09
professionalSimewu16-Jun-15 12:09 
Questionauto submit form Pin
joe-hanh24-Feb-15 6:22
joe-hanh24-Feb-15 6:22 
AnswerRe: auto submit form Pin
Afzaal Ahmad Zeeshan24-Feb-15 6:47
professionalAfzaal Ahmad Zeeshan24-Feb-15 6:47 
You can use the setTimeout in JavaScript to trigger a function after a time. And once the next question has been loaded, again set the timer so that after exact 30 seconds it would again submit the form.

For example, to submit the form you might run this code,

JavaScript
setTimeout(submitForm, 30000); // 30000 ms is 30 seconds

function submitForm() {
   document.myForm.submit();
}


Doing the same would submit them all. You can set the timeout to re-calculate the time once the question form is loaded again. It would be simple. Smile | :)
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~

GeneralRe: auto submit form Pin
joe-hanh25-Feb-15 2:31
joe-hanh25-Feb-15 2:31 
QuestionGet selected Li from UL Pin
indian14323-Feb-15 15:02
indian14323-Feb-15 15:02 
AnswerRe: Get selected Li from UL Pin
Matt U.24-Mar-15 9:59
Matt U.24-Mar-15 9:59 
AnswerRe: Get selected Li from UL Pin
Simewu15-Jun-15 15:23
professionalSimewu15-Jun-15 15:23 
QuestionHiding a button which doesn't have an ID or Name Pin
indian14322-Feb-15 8:52
indian14322-Feb-15 8:52 

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.