Full version: jsB@nk » Status » Title » Catch title and URL from HTML & Browser
URL: https://www.javascriptbank.com/catch-title-and-url.html
The script will display title and URL of page which contain it.
Full version: jsB@nk » Status » Title » Catch title and URL from HTML & Browser
URL: https://www.javascriptbank.com/catch-title-and-url.html
<SCRIPT language=javascript> var title1 = "Title changed when mouse over link"; var title2 = "Title changed";document.title = title1</SCRIPT><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<b><A onmouseout="document.title=title1; return true;" onmouseover="document.title=title2; return true;" style="CURSOR: default">Mouse over here to change title</A></b><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->