I need the form to be submitted at the end of the count down. I am aware of expiryURL, but the form doesnt get processed. Can someone help?
Thanks!
I need the form to be submitted at the end of the count down. I am aware of expiryURL, but the form doesnt get processed. Can someone help?
Thanks!
Here's a way with just a combination of classic javascript with jQuery:
$(function() {
setTimeout($("#myForm").submit(), 60 * 100);
});
This will trigger every 60 seconds (60 seconds * 100 = milliseconds), submitting the form.
HTH