How can I use JavaScript (no JQuery) to traverse through a bunch of DIVs that has a common class, then check the value within the <span> tag, base on the value, change the href value to something else. Here is an example mark-up.

<div class="module-content">
<div class="js-tab-content S00">
    <h2 class="heading">
        <a href="http://someurl.com">
            <span>Adelaide</span>
        </a>
    </h2>
</div>
<div class="js-tab-content N00">
    <h2 class="heading">
        <a href="http://anotherurl.com">
            <span>Sydney</span>
        </a>
    </h2>
</div>
<div class="js-tab-content V00">
    <h2 class="heading">
        <a href="http://thisurl.com">
            <span>Melbourne</span>
        </a>
    </h2>
</div>
</div>
link|improve this question

57% accept rate
feedback

2 Answers

up vote 1 down vote accepted
var tabContentDivs = document.getElementsByClassName("js-tab-content");

for (var i = 0, tabContentDiv; tabContentDiv = tabContentDivs[i]; ++i) {
    var spanEl = tabContentDiv.querySelector(".heading span");
    var spanText = spanEl.innerText;

    var aEl = tabContentDiv.querySelector(".heading a");
    aEl.href += "#" + spanText; // for example
}
link|improve this answer
Hi, Can it be more specific with targeting the span within the 'heading' class, as there is a few spans within each DIV, but I excluded them as the example mark-up would be too lengthy. – calebo Sep 12 '11 at 2:46
@caleb your wish is my command – Domenic Sep 12 '11 at 2:47
Thanks for that, but what about the last 2 lines, so instead of appending the spanText value to the end of the url, how can I check if the spanText is 'Adelaide', change href to foo.com instead. Is there a more elegant way to do it if I had 12 tabContentDiv, consequently having 12 if statement checking the value of spanText. Hope that makes sense. – calebo Sep 12 '11 at 2:55
1  
@Domenic: If you're using querySelector, why not use querySelectorAll('.js-tab-content .heading a span')? Then in the loop, you can just do: tabContentDiv.parentNode.href = this.innerText;. – user113716 Sep 12 '11 at 3:53
@patrick thanks for your comment, i've figured out solution based on comments below, but was wondering if there was a more consist/elegant way to do it. Heres my example: jsfiddle.net/calebo/seZdA – calebo Sep 12 '11 at 7:07
show 1 more comment
feedback

Here it is:

var divs = document.getElementsByClassName("js-tab-content");
for(var i=0;i<divs.length;i++){
    var div = divs[i];
    if(!div) break;
    var span = div.getElementsByTagName("span");
    var link = div.getElementsByTagName("a");
    if(span[0].innerHTML == "Adelaide") link[0].href = "http://google.com";
}
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.