Results 1 to 7 of 7
-
29th Jan 2012, 05:22 AM #1OPMember
PHP/Javascript: Make certain links open in a new window?
Does anyone know a code for making a certain link open in a new window automatically?
Example:
All "besthostingforums.com" links will open in a new windowDarlos Reviewed by Darlos on . PHP/Javascript: Make certain links open in a new window? Does anyone know a code for making a certain link open in a new window automatically? I know I can do this manually but I probably have over 1000+ links in my blog that doesn't have a target="_blank" tag. Rating: 5
-
29th Jan 2012, 05:24 AM #2Respected MemberWebsite's:
DL4Everything.com Soft2050.inYou want to open each and every external link in a new tab?
-
29th Jan 2012, 05:26 AM #3BannedWebsite's:
NitroXD.comuse this code
Code:<a href='http://nitroxd.com/' target="_blank">NitroXD.com</a>
-
29th Jan 2012, 05:28 AM #4BannedWebsite's:
NitroXD.comjust change the title & link to your choice & add it to your website & click the link ,, then it will be opened in new tab
-
29th Jan 2012, 07:11 AM #5OPMember
@NiKE,
Sorry but I already know that code. I need one that will automatically add a code like that in for example, "KWWHunction" list of links.
You want to open each and every external link in a new tab?
-
29th Jan 2012, 07:15 AM #6Respected MemberWebsite's:
DL4Everything.com Soft2050.inOk! Try this code, this will make all links add target="_blank" on load of the page
PHP Code:<html>
<head>
<title>Add target _blank in all Links by Javascript</title>
<script type="text/javascript">
window.onload=addtargetblankinalllinks ; // add the function on load of the page
function addtargetblankinalllinks() {
var links = document.getElementsByTagName('a');
for(i in links)
links[i].target="_blank";
}
</script>
</head>
<body>
<a href="http://www.dl4everything.com">DL4EVERYTHING</a><br />
<a href="http://www.soft2050.in">Soft2050</a><br />
<a href="http://www.google.com">Google</a><br />
<a href="http://www.yahoo.com">Yahoo</a><br />
<a href="http://www.facebook.com">Facebook</a><br />
All Links will open in new tab even the links don't have any target _blank
</body>
</html>
-
29th Jan 2012, 07:22 AM #7OPMember
Thanks, @soft2050
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Plugin: Pop-up window for a list of download links, possible?
By Tennouji in forum WordpressReplies: 0Last Post: 6th Jul 2012, 10:11 PM -
Open multiple links at once
By Daniel in forum Webmaster ResourcesReplies: 0Last Post: 2nd Nov 2011, 09:04 AM -
Open All Links in new tab?
By RNBxBeatz in forum Web Development AreaReplies: 3Last Post: 11th Jun 2011, 11:10 AM -
[Selling] Links and buttons spots open again.
By MrPeanut420 in forum Completed TransactionsReplies: 13Last Post: 10th Jul 2010, 07:25 AM -
Links open in same page??
By AngieBaby in forum phpBBReplies: 13Last Post: 14th Feb 2010, 04:07 PM
themaCreator - create posts from...
Version 3.47 released. Open older version (or...