Version compl�te: jsB@nk » Lien » Ouvrir le lien
URL: https://www.javascriptbank.com/open-link.html
Ajouter la possibilité d'autoriser Liens sur votre page d'être ouvert dans de nouvelles fenêtre avec ce puissant script. Un simple checkbox permet de basculer entre la situation actuelle et la nouvelle fenêtre. Super!
Version compl�te: jsB@nk » Lien » Ouvrir le lien
URL: https://www.javascriptbank.com/open-link.html
<SCRIPT LANGUAGE="JavaScript">// Open Link// Jason Francis ([email protected])<!-- Beginfunction hyperlinks(target){ if (target) where = "_blank"; else where = "_self"; for (var i=0; i<=(document.links.length-1); i++) { document.links[i].target = where; }}// End --></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<form><input type="checkbox" name="targetnew" onclick="hyperlinks(this.checked)" value="ON"> Open links in a New Window</form><a href="http://javascriptbank.com/">Java Boutique</a><br><a href="http://javascriptbank.com/">The Counter</a><br><a href="http://javascriptbank.com/">Web Developer's Virtual Library</a><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->