![]() |
| ||||||||
|
|||||||
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
|
Warrior Member
Join Date: Mar 2009
Location: JavaScriptBank.com - Free JavaScript Source Code
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
|
Use this simple JavaScript to make all links on your web pages open in new tab/window. Script is easy to setup, you should save them into a f... detail
[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/link/make-link-open-in-new-tab-window.jpg[/IMG] Demo: Make link open in new tab/window How to setup Step 1: Copy & Paste JavaScript code below in your HEAD section JavaScript Code:
<script language=javascript>
/*
Kevin Yank
hxxp ://w w w.sitepoint. com/authorcontact/48
*/
function externalLinks()
{
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++)
{
var anchor = anchors[i];
if(anchor.getAttribute("href"))
anchor.target = "_blank";
}
}
window.onload = externalLinks;
</script>
<!--
This script downloaded from w w w.JavaScriptBank. com
Come to view and download over 2000+ free javascript at w w w.JavaScriptBank. com
-->
HTML Code:
<a href="hxxp ://javascriptbank. com/">Home</a> |
<a href="hxxp ://javascriptbank. com/4rum/">Forum</a> |
<a href="hxxp ://javascriptbank. com/javascript/">JavaScript</a> |
<a href="hxxp ://javascriptbank. com/service/">Services</a> |
<a href="hxxp ://javascriptbank. com/javascript/submit-javascript-bank.html">Submit script</a> |
<a href="hxxp ://javascriptbank. com/thietkeweb/javascriptmall/">Documentary</a> |
<a href="hxxp ://javascriptbank. com/javascript/contact-javascript-bank.html">Contact us</a> |
<a href="hxxp ://javascriptbank. com/javascript/aboutus-javascript-bank.html">About us</a>
<!--
This script downloaded from w w w.JavaScriptBank. com
Come to view and download over 2000+ free javascript at w w w.JavaScriptBank. com
-->
Javascript floating message - Javascript multi level drop down menu - JavaScript in_array()
|
|
|
|
|
|
#2 |
|
Warrior Member
Join Date: Nov 2009
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
but you have option in dreamweaver i am talking about that blank option to open pages in new window so why someone will use this script ?
|
|
|
|
|
|
|
|
|
#3 | |
|
Warrior Member
War Room Member
Join Date: Nov 2008
Posts: 9
Thanks: 0
Thanked 1 Time in 1 Post
|
Or alternatively just add:
target="_blank" to the HTML of a link, for example: Quote:
| |
|
|
|
|
|
#4 | |
|
Vengeful Spirit
Join Date: Sep 2009
Location: Las Vegas, NV
Posts: 60
Thanks: 0
Thanked 5 Times in 5 Posts
|
Quote:
| |
|
Lyka Adams is the founder of the blog about Poker Players and Casino Tips and Strategy.
|
||
|
|
|
![]() |
|
| Tags |
| link, make, open, tab or window |
| Thread Tools | |
|
|
![]() |