I would like to know if there is some program or code which can do the following :
Display the URL of a webpage within the webpage itself, either in the begining or end of the page. It should include a message like Trackback URL: <URL of the webpage>. I need a software or application or code which can achieve this so that each time I save a webpage to my hard disk either in html or mhtlml format I don't lose track of the URL from where I downloaded the page.
I have tried Javascript code which modifies a page dynamically using the following code :
<script language="JavaScript">
var text = "Trackback URL: " + document.URL;
document.body.insertAdjacentText("beforeEnd", text);
</script>
But all it does is write the URL to the page after the page is loaded, but when I save the page and open it again the URL is not displayed anymore.
Does anybody know of any application or software which can achieve the function that I desire or is there any custom Javascript solution to my need.
Any help will be appreciated. Thanks.
Display the URL of a webpage within the webpage itself, either in the begining or end of the page. It should include a message like Trackback URL: <URL of the webpage>. I need a software or application or code which can achieve this so that each time I save a webpage to my hard disk either in html or mhtlml format I don't lose track of the URL from where I downloaded the page.
I have tried Javascript code which modifies a page dynamically using the following code :
<script language="JavaScript">
var text = "Trackback URL: " + document.URL;
document.body.insertAdjacentText("beforeEnd", text);
</script>
But all it does is write the URL to the page after the page is loaded, but when I save the page and open it again the URL is not displayed anymore.
Does anybody know of any application or software which can achieve the function that I desire or is there any custom Javascript solution to my need.
Any help will be appreciated. Thanks.