Input Range stepUp() Method - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Range

Description

The stepUp() method increments the value of the slider control by a specified number.

Parameter Values

Parameter Description
numberRequired. Specifies the amount the value of the slider control should increase.Default is "1"

Return Value:

No return value

The following code shows how to Increment the value of a slider control by "10":

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>
Points: <input type="range" id="myRange" value="60">

<button onclick="myFunction()">Test</button>

<script>
function myFunction() {/*  ww  w . j a va 2  s  . c o  m*/
    document.getElementById("myRange").stepUp(10);
}
</script>

</body>
</html>

Related Tutorials