URLUnencoded property
Gets the URL for the document, stripped of any character encoding.
Syntax
| JavaScript | |
|---|
Property values
Type: String
the URL of the document.
Remarks
For more information about URL character encoding issues, refer to RFC1738: Uniform Resource Locators (URL).
Examples
The following illustrates the difference between the value returned by the URLUnencoded property and the value returned by the URL property of the document.
Code example: http://samples.msdn.microsoft.com/workshop/samples/author/dhtml/refs/URLUnencoded.htm
<script type="text/javascript">
function window.onload()
{
oURL.innerText = document.URL;
oURL2.innerText = document.URLUnencoded;
}
</script>
See also
Show: