Return to Snippet

Revision: 43479
at March 24, 2011 22:18 by BebenKoben


Initial Code
<script type="text/javascript">
//<![CDATA[
<!--
// code hack by Beben Koben
function targetLinks(newWin)
{
   if (newWin) where = "_blank";
   else where = "_self";
   for (var i=0; i<=(document.links.length-1); i++)
   {
   document.links[i].target = where;
   }
}
//-->
//]]>
</script>

<p><input name="targetnewtargetnew" onclick="targetLinks(this.checked)" type="checkbox"> Links open new windows!</p>

Initial URL


Initial Description


Initial Title
Open All Links With Checklist Method

Initial Tags
javascript

Initial Language
JavaScript