Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example I want to do something like this:

<td class="repeats">     
    <img src="a.png"/>
    <span onmouseover="this.parentNode.info.src='images/b.png'" 
          onmouseout ="this.parentNode.info.src='images/a.png'">
          text here
    </span>
</td> 

Without using an ID or JQuery (ideally) I need a way of selecting the image in the current cell. How can this be achieved?

I only want to change the current cell, as opposed to all cells with the same class.

share|improve this question
In css you can use this selector .repeats img:hover . – bharathi Jan 21 at 13:34

2 Answers

up vote 2 down vote accepted

Use previousSibling:

<td class="repeats">     
    <img src="a.png"/>
    <span onmouseover="this.previousSibling.src='images/b.png'" 
          onmouseout ="this.previousSibling.src='images/a.png'">
          text here
    </span>
</td> 

Docs: https://developer.mozilla.org/en-US/docs/DOM/Node.previousSibling


Or you can use parentNode.childNodes[0]:

<span onmouseover="this.parentNode.childNodes[0].src='images/b.png'" 
    onmouseout ="this.parentNode.childNodes[0].src='images/a.png'">
    text here
</span>
share|improve this answer
Nice one, previous sibling is perfect for my needs! – idb Jan 21 at 13:56
Be careful: previousSibling can return a text node on some browsers instead of the img element. See the note at reference.sitepoint.com/javascript/Node/previousSibling. – Christopher James Calo Jan 23 at 11:27

you can try this

$('td[class="repeats"]').children().filter('Img').dosomething();
share|improve this answer
2  
He said without jQuery. – Steve Wellens Jan 21 at 13:38
He actually updated question when i was answering. – Hiren Desai Jan 21 at 13:43
It's useful regardless, thanks Hiren. – idb Jan 21 at 13:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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