HTML | DOM URL Property
The URL property in HTML is used to return a string which contains the complete URL of the current document. The string also includes the HTTP protocol such as ( http://).
Syntax:
document.URL
Below program illustrates the document.URL property in HTML:
Example:
<!DOCTYPE html> < html > < head > < title >DOM document.URL() Property</ title > < style > h1 { color:green; } h2 { font-family: Impact; } body { text-align:center; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >DOM document.URL() Property</ h2 > < p >For displaying the URL of the document, double click the "View URL" button: </ p > < button ondblclick = "myURL()" >View URL</ button > < p id = "url" ></ p > < script > function myURL() { var gfg = document.URL; document.getElementById("url").innerHTML = gfg; } </ script > </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers: The browser supported by document.URL property are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Apple Safari
Recommended Posts:
- HTML | DOM name Property
- HTML | DOM Bdo dir Property
- HTML | DOM specified Property
- HTML | DOM dir Property
- HTML | DOM id Property
- HTML | DOM Map name Property
- HTML | DOM value Property
- HTML | DOM li value Property
- HTML | Window top( ) Property
- HTML | DOM className Property
- HTML | DOM doctype Property
- HTML | KeyboardEvent which Property
- HTML | DOM Button name Property
- HTML | DOM Track src property
- HTML | DOM Style top Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.