»
AnglaisFrançaisVietnamien

Imprimer - Ouvrir le lien - JavaScriptBank.com

Version complète: jsB@nk » Lien » Ouvrir le lien
URL: https://www.javascriptbank.com/open-link.html

Ouvrir le lien © JavaScriptBank.comAjouter 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



JavaScript
<SCRIPT LANGUAGE="JavaScript">// Open Link// Jason Francis (jasonledoux@msn.com)<!-- 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-->


HTML
<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&#39;s Virtual Library</a><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->