Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> Points: <input type="range" id="myRange" value="60"> <p>Click the button to increment the value of the slider control by "10" (each time you click).</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myRange").stepUp(10); } </script> </body> </html>