Javascript examples for DOM HTML Element:Input URL
Input URL maxLength Property - Set the maximum number of characters allowed in a URL field:
<!DOCTYPE html> <html> <body> Homepage: <input type="url" id="myURL"> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {// ww w . j av a 2s . c o m document.getElementById("myURL").maxLength = "8"; document.getElementById("demo").innerHTML = "set"; } </script> </body> </html>