0
How can i use html5 range to setimeout function with javascript with the time value displaying on the html page
i want to use html5 range to setimeout with javascript and the value
1 ответ
+ 2
function timeVal(){
    var timeoutValue = document.getElementById("time").value;
    
    setTimeout(function(), timeoutValue);
    
    document.getElementById("displayTimeout value").innerHTML = timeoutValue;
}
/* Hope this helps! */



