I have the following HTML page:

<html>
    <head>
        <script type="text/javascript" src="JavaScript/Menu.js"></script>
    </head>
    <body>
        <ul>
            <li><a onclick="GetIndex(this)">One</a></li>
            <li><a onclick="GetIndex(this)">Two</a></li>
            <li><a onclick="GetIndex(this)">Three</a></li>
            <li><a onclick="GetIndex(this)">Four</a></li>
        </ul>
    </body>
</html>

And the Menu.js javascript:

function GetIndex(sender)
{   
    var aElements = sender.parentNode.parentNode.getElementsByTagName("a");
    var aElementsLength = aElements.length;

    var index;
    for (var i = 0; i < aElementsLength; i++)
    {
        if (aElements[i] == sender) //this condition is never true
        {
            index = i;
            return index;
        }
    }
}

Why is the commented condition never met? How do I compare if the two HTML elements are equal in Javascript? Thanks for all the help.

link|improve this question

Not to be mistaken, the main goal here is to get that bloody index. However, learning how to make the disputed condition return true will solve this and many other dilemmas. – Boris Oct 27 '10 at 11:26
1  
Your code works just fine for me in IE and Chrome, assuming you modify it slightly to do something with index inside the condition, instead of just returning it. jsfiddle.net/AndyE/BcSL7 – Andy E Oct 27 '10 at 11:40
@Andy E: I deleted the return index; line and added alert('Index: ' + index); to the end of the function and it results in a message "Index: unidentified". :( – Boris Oct 27 '10 at 11:44
wow it works now! what the hell... could it be that my page or javascript was cached? – Boris Oct 27 '10 at 11:51
whoever wants to write "Your code is correct" in the answer will get points for providing the right answer :) – Boris Oct 27 '10 at 11:52
feedback

4 Answers

up vote 1 down vote accepted

"Your code is correct"

link|improve this answer
sweet! cheers :) – Boris Oct 27 '10 at 19:58
(\/) (°,,°) (\/) WOOBwoobwoobwoob! – xj9 Oct 27 '10 at 20:36
feedback

Are you sure GetIndex function gets executed on click event on anchor tag?

Try by giving href attribute to anchor tag. You can write either

<a href="#" onclick="GetIndex(this)">One</a>

or

<a href="javascript:void(0)" onclick="GetIndex(this)">One</a>

here is the working example http://jsfiddle.net/QfRSb/

link|improve this answer
I am quite sure, because in my 'real' example, the backgrounds of the <a> elements are changing in the loop. That proves that the function does get executed. (BWT, I am using Chrome. I don't know if it matters...) – Boris Oct 27 '10 at 11:36
you mean onclick="GetIndex(this); return false" !!! – mplungjan Oct 27 '10 at 11:47
no, I meant if (aElements[i] == sender) returns false. – Boris Oct 27 '10 at 11:50
jsfiddle.net/QfRSb – Chinmayee Oct 27 '10 at 12:29
feedback

Your code seems to work...

link|improve this answer
feedback

try to use:

if (aElements[i] === sender)

instead of

if (aElements[i] == sender) 
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.