I'm using Jquery countdown for a timer
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
精彩评论