URL of a document : Hyper Link « HTML « JavaScript DHTML
- JavaScript DHTML
- HTML
- Hyper Link
URL of a document
<html>
<head>
<script type="text/javascript">
function showURL(){
alert(document.URL)
}
</script>
</head>
<body>
<form>
<input type="button" onclick="showURL()" value="Show URL">
</form>
</body>
</html>
Related examples in the same category