|
<script type="text/javascript" language="JavaScript"> <!-- Copyright 2005 Bontrager Connection, LLC // Specify the URL of the web page that shall be loaded into the old window or tab when the visitor a specific link. // Put the URL on the next line, between the quotation marks. var OldWindowDestination = "http://LightFocus.com/"; // Specify the number of milliseconds to wait after the click before the above URL is loaded into the old window or tab. // Recommend 250 minimum to give browser a chance to complete launching the new window. var NumberOfMillisecondsToWait = "1000"; // No further customization is necessary. function Dest() { location.href = OldWindowDestination; } function NewURL() { setTimeout("Dest()",parseInt(NumberOfMillisecondsToWait)); return true; } //--> </script>
Linken putter du der du ønsker den:
<a href="http://infolinx-no.com/" onclick="return NewURL();" target="_blank">Prøv det ut her</a>
target="_blank" atributtet gjør at siden åpnes i nytt vindu onclick="return NewURL();" atributtet gjør at "farvel-siden" lastes i det gamle vinduet: |