I've been beating my head against the wall for a bit as I know the answer is simple but it eludes me. I have some programming experience but mainly with PHP. I came across an instance in which a site I am working on needed a script to automatically detect external links and open them in a new window. I found 2 separate javascript codes and they work beautifully but the problem is where there is an anchor tag such as href="#B" the code considers this an external link. I've done significant research and tried doing an indexOf and endWith() functions but neither are ignoring a link that has a #letter (i.e. #B).
Would be great if I could get some further assistance or pointers. See the code below I found on the net:
assigntarget:function(){
var rexcludedomains=new RegExp(this.excludedomains.join("|"), "i")
var all_links=document.getElementsByTagName("a")
if (this.mode=="auto" || (this.mode=="manual" && this.togglebox.checked)){
for (var i=0; i<=(all_links.length-1); i++){
if (all_links[i].hostname.search(rexcludedomains)==-1 && all_links[i].href.indexOf("http:")!=-1)
all_links[i].target=ddwindowlinks.linktarget
}
}
else{
for (var i=0; i<=(all_links.length-1); i++)
all_links[i].target=""
}
Now I've tried using index as I mentioned above to find if # exists in the link as below:
for (var i=0; i<=(all_links.length-1); i++){
if (all_links[i].hostname.search(rexcludedomains)==-1 && all_links[i].href.indexOf("#") ==-1 && all_links[i].href.indexOf("http://") !=-1)
all_links[i].target=ddwindowlinks.linktarget
Thanks for any help or potiners.
http://siteyouareon.com/pageyouareon.html#....– mplungjan Jun 4 '11 at 5:34