Javascript examples for DOM HTML Element:Input URL
You can create an <input> element with type="url" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create an URL field</button> <script> function myFunction() {//from w w w. jav a2s . c o m var x = document.createElement("INPUT"); x.setAttribute("type", "url"); x.setAttribute("value", "http://www.java2s.com"); document.body.appendChild(x); } </script> </body> </html>