Javascript URL Property
Javascript URL Definition and Usage
The Javascript URL property returns the URL of the current document.
Javascript URL Syntax
document.URL
Javascript URL Example
<html>
<body>
The URL of this document is:
<script type="text/javascript">
document.write(document.URL)
</script>
</body>
</html>
|