0
Is it possible to build a countdown timer for auto submit without javascript
I want to build a timer to submit after some time if the user didn't hit submit bottom without js
1 Answer
0
you can use setTimeout() function , Which works asynchronously ,and below code fires that function after 3 second so you can put your code inside that function
https://www.sololearn.com/learn/10258/?ref=app
setTimeou(function (//timer code){},3000)