I'm trying to sort through the links on my page and make some of them open into a new window, depending on their URL. This is the code I have. It doesn't seem to be working. Can you see why?

function MakeMenuLinksOpenInNewWindow() {
    var links = document.getElementsByTagName("a");
    for (var i = 0; i < links.length; i++) {
        if (links[i].href == "http://testtesttest.org/")
            links[i].target = "_blank";
    }
}
MakeMenuLinksOpenInNewWindow();
link|improve this question

1  
Can you show some HTML to go with it? – Pekka Sep 1 '10 at 20:07
Did you try links[i].setAttribute('target', '_blank') instead of links[i].target = "_blank"; Maybe that will work. – Zoidberg Sep 1 '10 at 20:08
1  
No, it won't. Please don't use getAttribute/setAttribute for scripting HTML documents. They are less readable than the normal DOM Level 1 HTML properties like href= and they're buggy in IE. – bobince Sep 1 '10 at 20:35
use example.com (org, net, or edu) for examples. (en.wikipedia.org/wiki/Example.com) – David Murdoch Sep 1 '10 at 21:30
feedback

4 Answers

up vote 4 down vote accepted

Use jQuery.js. It'll make your life much easier:

$("a[href='http://testtesttest.org/']").attr("target", "_blank");
link|improve this answer
3  
his javascript is fine. telling him to replace it with the equivalent jquery won't fix his problem. – lincolnk Sep 1 '10 at 21:10
feedback

Make sure that when you call this function the DOM has been loaded:

window.onload = MakeMenuLinksOpenInNewWindow;

or:

<body onload="MakeMenuLinksOpenInNewWindow();">
link|improve this answer
Is there a way to call the function from the .js file? – Christian Sep 1 '10 at 20:12
The reason your function did not work is because the DOM (and therefore the a links) had not yet loaded so your script had nothing to do. What Darin's code does is bind your function to the execution of the onload event of the document (in other words, once the DOM is loaded and ready, your function executes). If you add the first code snippet he suggested to your .js file, everything should work. – Moses Sep 1 '10 at 20:17
Yes, try my first suggestion: window.onload = MakeMenuLinksOpenInNewWindow;. – Darin Dimitrov Sep 1 '10 at 20:17
But other than that, the function is good? This is what I have in the .js file now: function MakeMenuLinksOpenInNewWindow() { var links = document.getElementsByTagName("a"); for (var i = 0; i < links.length; i++) { if (links[i].href == "byupas.org/";) links[i].setAttribute('target', '_blank'); } window.onload = MakeMenuLinksOpenInNewWindow(); } – Christian Sep 1 '10 at 20:28
2  
@christian: it should be window.onload = MakeMenuLinksOpenInNewWindow;, not window.onload = MakeMenuLinksOpenInNewWindow();. – David Murdoch Sep 1 '10 at 20:48
show 6 more comments
feedback

You should probably not be setting this javascript. And instead use HTML.

But if you must...

function MakeMenuLinksOpenInNewWindow() {
    var links = document.getElementsByTagName("a");
    for (var i = 0, l = links.length; i < l; i++) {
        if (links[i].href === "http://www.example.com/")
            links[i].target = "_blank";
    }
}
window.onload = MakeMenuLinksOpenInNewWindow;
link|improve this answer
I put this into my .js file, and it doesn't seem to be working. Is there anything else I need to do? – Christian Sep 1 '10 at 20:36
show us the HTML for the page you are talking about. – David Murdoch Sep 1 '10 at 20:44
also, you may be overriding the window.onload event. – David Murdoch Sep 1 '10 at 20:45
function MakeMenuLinksOpenInNewWindow() { var linkies = document.links; for (var i = 0; i < linkies.length; i++) { if (linkies[i].href == "byupas.org/";) linkies[i].target = "_blank"; } alert("HEY SUCKA"); } window.onload = MakeMenuLinksOpenInNewWindow; The function is definitely not being called, since the Alert is not displaying. – Christian Sep 1 '10 at 21:01
Using Firebug, I can see that the onload handler is picking up the function, but the DOM inspector says "__onloadStarted" and "onLoadCompleteStarted" are false, long after the page is loaded. – Christian Sep 1 '10 at 21:05
show 1 more comment
feedback

your javascript looks fine. assuming you're having problems with your link elements not existing before you try to modify them, you need to delay running your method as mentioned in other posts. my preferred method is moving the script contents to the end of the page.

since it looks like you're using an external js file, your page would like

    ... 
    <a href="http://testtesttest.org/" >whatever</a>
    ... 
    <script src="myscriptfile.js"></script>
</body>
</html>

if you're still having problems, you'll have to post a more complete example.

edits: another point. if you're still having problems, make sure the url you are expecting in the href property isn't being rewritten. for example, IE will tack a trailing / to the end of a .com url if you don't provide it, which would cause your comparison to fail.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.