I have the following HTML page (page is simplified here as it is a sample of the real one):

<html>
<head>
<script type="text/javascript" src="JavaScript/Painting.js"></script>
</head>
<body>
<div id="center-wrapper">
    <div id="side-menu">
        <ul>
            <li><a onclick="Paint()">About</a></li>
            <li><a onclick="Paint()">Contents</a></li>
            <li><a onclick="Paint()">Visual</a></li>
            <li><a onclick="Paint()">CSS</a></li>
            <li><a onclick="Paint()">Javascript</a></li>
        </ul>
    </div>
</div>
</body>
</html>

And I have the Painting.js file (again, a bit simplified):

function Paint()
{

    var e = window.event;

    var sender;
    if (e.target)
    {
        sender = e.target;
    }   
    else
    {
        if (e.srcElement)
        {
            sender = e.srcElement;
        }
    }

    for (element in sender.parentNode.parentNode.getElementsByTagName("a"))
    {
        element.style.color = 'blue';
        element.style.backgroundColor = '#FFFFFF';
    }

    sender.style.color = '#FFFFFF';
    sender.style.backgroundColor = '#000000';

}

The basic idea is:

  1. Find a HTML element that caused the event.
  2. Go up until you reach the <ul> element.
  3. Loop through the list items; find the <a> tags and change their color and background
  4. Upon exiting the loop, change the color and the background of the HTML element that caused the event.

Now, I can't seem to get to the part located in the for loop. I think I am making a mistake by calling GetElementsByTagName() method. Could you help me out? Thanks.

link|improve this question

Can you use JQuery? – brumScouse Oct 26 '10 at 18:01
No unfortunately, we have an exercise at school to demonstrate Javascript. – Boris Oct 26 '10 at 18:02
a:visited?...... – brumScouse Oct 26 '10 at 18:04
Still doesn't work. I tried the sender.parentNode.parentNode.childNodes but it failed again. Then I tried sender.parentNode.parentNode.childNodes.length to see how many elements are there, and it returned 11! I don't understand that either, as it makes sense to return 5 (for all <li> elements) or 10 (for all <li> + <a> elements). On the other hand, sender.parentNode.parentNode.nodeType returns the accurate <ul> element. I'm seriously puzzled... – Boris Oct 26 '10 at 18:11
var sender = e.target || e.srcElement; – lincolnk Oct 26 '10 at 18:15
feedback

4 Answers

up vote 3 down vote accepted

You should call getElementsByTagName() only once, caching the result.

Then iterate over the collection like this (instead of using for/in).

var a_elements = sender.parentNode.parentNode.getElementsByTagName("a");

for (var i = 0, len = a_elements.length; i < len; i++ ) {
    a_elements[ i ].style.color = 'blue';
    a_elements[ i ].style.backgroundColor = '#FFFFFF';
}
sender.style.color = '#FFFFFF';
sender.style.backgroundColor = '#000000';

To get the target, you can pass it as the parameter in the inline onclick:

   <ul>
        <li><a onclick="Paint(this)">About</a></li>
        <li><a onclick="Paint(this)">Contents</a></li>
        <li><a onclick="Paint(this)">Visual</a></li>
        <li><a onclick="Paint(this)">CSS</a></li>
        <li><a onclick="Paint(this)">Javascript</a></li>
    </ul>

Then your javascript can look like this:

function Paint( sender ) {

    var a_elements = sender.parentNode.parentNode.getElementsByTagName("a");

    for (var i = 0, len = a_elements.length; i < len; i++ ) {
        a_elements[ i ].style.color = 'blue';
        a_elements[ i ].style.backgroundColor = '#FFFFFF';
    }
    sender.style.color = '#FFFFFF';
    sender.style.backgroundColor = '#000000';
}

Example: http://jsbin.com/aroda3/

link|improve this answer
Thank you for your answer. However, it still doesn't work. The script brakes after the: var a_elements = sender.parentNode.parentNode.getElementsByTagName("a"); – Boris Oct 26 '10 at 18:15
@Boris - I made a mistake. I'll update in a second. EDIT: Updated. The target is now being passed as an argument in the inline onclick, and is accessed in the function as the sender parameter. Here's a live example: jsbin.com/aroda3 – user113716 Oct 26 '10 at 18:18
Thank you. I got it to work somehow, though I could swear on my life that my code was identical to yours. Maybe the browser (Chrome) was showing me some cached stuff? To hell with it, it works and you're the man. – Boris Oct 26 '10 at 18:39
@Boris - You're welcome. :o) – user113716 Oct 26 '10 at 18:51
feedback

Basically: 1. In order to find the element which caused the event you have to add an identifier to the a or li element and then use it as a parameter to your function. For example:

<li id='id_li1'><a onclick="Paint(id_li1)">About</a></li>
  1. You can also use the ul id as parameter for your function, so you can know which is the ul that you need. I supposed that you generate your ul dinamically: <a onclick="Paint(id_li1, id_ul)">About</a>
  2. Then you have the reference for the ul and you can implement a function to iterate on the list items and give to the function the ul node using the id_ul. For example:

    function processUL(ul) {

    if (!ul.childNodes || ul.childNodes.length == 0) return;
    
    
    // Iterate LIs
    
    
    for (var itemi=0;itemi<ul.childNodes.length;itemi++) {
    
    
    
    var item = ul.childNodes[itemi];
    
    
    if (item.nodeName == "LI") {
    
    
        // Iterate things in this LI in the case that you need it put your code here to get the a element and change the color and background
          .....
    }
    
    }

}

link|improve this answer
Thank you for your answer. – Boris Oct 26 '10 at 19:19
feedback

I know you can't use jQuery for this, but I thought I'd supply a solution for others that may be able to:

$(function(){
    $("li a").click(function(){
        $(this).parent().siblings().each(function(){
            $(this).find("a").css({'color':'blue','background-color':'white'});    
        });
        $(this).css({'color':'white','background-color':'black'});    
        return false;
    });
});
link|improve this answer
OK, I hope it solves the problem for some! Thanks for the reply. – Boris Oct 26 '10 at 19:20
feedback

No. Getting links by getElementsByTagName("a") is your one-off web-developer solution.

You can also traverse the DOM properly by childNodes, and this solution generalizes to all UL lists you may have:

_($("#my-list")[0].childNodes).filter(function(node) { return node.nodeName == "LI"; })

It uses underscore and jQuery, both tools you should know about or at least understand how to use if you want to call yourself a programmer.

link|improve this answer
1  
What an arrogant answer.. – Boris Dec 24 '11 at 12:11
feedback

Your Answer

 
or
required, but never shown

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