Open links of the same domain to open in the same window

Reply

Join Date: Jan 2008
Posts: 4
Reputation: charlesbw is an unknown quantity at this point 
Solved Threads: 0
charlesbw charlesbw is offline Offline
Newbie Poster

Open links of the same domain to open in the same window

 
0
  #1
Jul 12th, 2008
Sorry for the long title, but i wanted a precise title. I am wondering if there is a script out there, or maybe simple settings that can be used to force links that start with the url of the originating domain to open in the same window/Tab. If am not clear enough, let me know with a question.
Reply With Quote Quick reply to this message  
Join Date: Jun 2008
Posts: 849
Reputation: R0bb0b is on a distinguished road 
Solved Threads: 67
R0bb0b's Avatar
R0bb0b R0bb0b is offline Offline
Practically a Posting Shark

Re: Open links of the same domain to open in the same window

 
0
  #2
Jul 12th, 2008
I would recommend a javascript solution so it is less hands on.
  1. <html>
  2. <head>
  3. <title>none</title>
  4. <script language="javascript" type="text/javascript">
  5. function alterLinks()
  6. {
  7. links = document.getElementsByTagName("a");
  8. for(i = 0; i < links.length; i++)
  9. {
  10. if(links[i].href.indexOf("localhost") != -1)
  11. {
  12. links[i].target = "";
  13. }
  14. else
  15. {
  16. links[i].target = "_blank";
  17. }
  18. }
  19. }
  20. </script>
  21. </head>
  22. <body onLoad="alterLinks();">
  23. <a href="http://localhost/">home</a><br />
  24. <a target="_blank" href="http://localhost/">home</a><br />
  25. <a target="_blank" href="http://localhost/">home</a><br />
  26. <a target="_blank" href="http://localhost/">home</a><br />
  27. <a target="_blank" href="http://www.google.com/">home</a><br />
  28. <a target="_blank" href="http://www.daniweb.com/">home</a>
  29. </body>
  30. </html>
“Be who you are and say what you feel because those who mind don't matter and those who matter don't mind.” - Dr. Seuss

-- The documentation is inevitable, you may get away with it for a little while but eventually you too will have to do the deed.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the PHP Forum


Views: 1033 | Replies: 1
Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC