Javascript examples for DOM HTML Element:Input Range
You can create an <input> element with type="range" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Slider Control</button> <script> function myFunction() {//from w w w. jav a 2s. com var x = document.createElement("INPUT"); x.setAttribute("type", "range"); document.body.appendChild(x); } </script> </body> </html>