War Room

Go Back   WarriorForum - Internet Marketing Forums > Warrior Support Forums > Website Design

Featured Warrior Special Offer...
"Members Of The *War Room* Discover Secrets To Immediate Success!"
Reply
 
LinkBack Thread Tools
Old 11-01-2009, 06:53 PM   #1
Warrior Member
 
Join Date: Mar 2009
Location: JavaScriptBank.com - Free JavaScript Source Code
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
Default Make link open in new tab/window

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
	-->
Step 2: Copy & Paste HTML code below in your BODY section
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()
JavaScriptBank.com is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 11-02-2009, 02:34 AM   #2
Warrior Member
 
Join Date: Nov 2009
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Make link open in new tab/window

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 ?

owenn is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 11-03-2009, 12:52 PM   #3
Warrior Member
War Room Member
 
Join Date: Nov 2008
Posts: 9
Thanks: 0
Thanked 1 Time in 1 Post
Default Re: Make link open in new tab/window

Or alternatively just add:

target="_blank"

to the HTML of a link, for example:

Quote:
<a href="http://somelinkhere.com" target="_blank">Some Anchor Text Here</a>
CamStudio is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 11-05-2009, 05:00 AM   #4
Vengeful Spirit
 
zaizaices8's Avatar
 
Join Date: Sep 2009
Location: Las Vegas, NV
Posts: 60
Thanks: 0
Thanked 5 Times in 5 Posts
Social Networking View Member's Myspace Profile  View Member's Twitter Profile 
Default Re: Make link open in new tab/window

Quote:
Originally Posted by owenn View Post
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 ?
Quote:
Originally Posted by CamStudio View Post
Or alternatively just add:

target="_blank"

to the HTML of a link, for example:
Agreed. It will be much simpler and loading time will be minimized. SE bots also doesn't read javascripts (or something like that).

Lyka Adams is the founder of the blog about Poker Players and Casino Tips and Strategy.
zaizaices8 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > Warrior Support Forums > Website Design

Tags
link, make, open, tab or window

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 01:55 AM.