Andy6666uk
Programmer
when a page loads how can I get the page's full url into a variable?
thanks
thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
</HEAD>
<script language="javascript">
function showurl()
{
alert(window.location);
};
</script>
<BODY onload="showurl();">
</BODY>
</HTML>