HTML DOM Input URL blur() Method Last Updated : 13 Feb, 2022 Comments Improve Suggest changes Like Article Like Report The Input URL blur() method in HTML DOM is used to extract or remove focus from the URL text field when the event occurs. Syntax: urlObject.blur() Parameters: This method does not contain any parameter values. Return Value: It does not return any value. Example: Below program illustrates the use of the input URL blur() method in HTML DOM. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input URL blur() Method </title> </head> <body style="text-align:center;"> <h1 style="color:green">GeeksforGeeks</h1> <strong>DOM Input URL blur() method</strong> <form id="myForm"> <input type="URL" id="url_id" name="Lnk"> </form> <br> <button onclick="myblur()">Remove Focus!</button> <!-- script to clear focus to the URL field--> <script> function myblur() { var txt = document.getElementById("url_id").blur(); } </script> </body> </html> Output Supported Browsers: The list of browsers supported by the HTML DOM Input URL blur() method is given below. Google ChromeMozilla FirefoxInternet ExplorerOperaSafari Comment More infoAdvertise with us Next Article HTML DOM Input Text blur() Method M manaschhabra2 Follow Improve Article Tags : HTML HTML-DOM HTML-Methods Similar Reads HTML DOM Input Tel blur() Method The input Tel blur() method in HTML DOM is used to pull or remove focus from the tel field when the event occurs. Syntax: telObject.blur() Parameters: This method does not contain any parameter values. Return Value: It does not return any value. Example: Below program illustrates the use of the inpu 1 min read HTML DOM Input Text blur() Method The Input Text blur() method in HTML DOM is used to pull or remove focus from the text field when the event occurs. Syntax: textObject.blur() Parameters: This method does not contain any parameter values. Return Value: It does not return any value. Example: Below program illustrates the use of the i 1 min read HTML DOM Input Search blur() Method The Input Search blur() method in HTML DOM is used to extract or remove focus from the search field when the event occurs. Syntax: searchObject.blur()Parameters: This method does not contain any parameter values. Return Value: It does not return any value. Example: Below program illustrates the use 1 min read HTML DOM Input URL focus() Method The Input URL focus() method in HTML DOM is used to get focus to the Input URL field when the event occurs. We can use this method for directing the focus of the user when an event occurs. Syntax: URLObject.focus() Parameters: This method does not contain any parameter values. Return Value: It does 1 min read HTML DOM Input URL select() Method The HTML <input type=âurlâ> is used to define a field that entered a URL. This input value is automatically validated before submitting the form. The input URL select() method in HTML DOM is used to select the content of a URL text field. It is an in-built method of input URL Object. Refer to 1 min read HTML DOM blur() Method The DOM blur method is used to remove the keyboard focus from the current element and also give focus with the help of the focus() method. We can apply the blur to any element and enable it by doing some operations. For example, we can blur to text-box by clicking a button. Syntax: Object.blur() Exa 1 min read Like