The referrer property shows the url of the page that you were previously at, as long as you clicked on a link on that page to get to this one.
Code:
<script type="text/javascript">
//<![CDATA[
document.write('The referrer of this document is: ');
document.write(document.referrer);
//]]>
</script>
Output: