Question

I have this elements hierarchy :

<div>
   <div>
      <input id="abc" .../>
   </div>
   <div>
      <span />
   </div>
</div>

How can I access to span element via input whom I know id please ?

I think I have to use

$("#abc").parent().parent()...

...but after please ?

Thank you

Was it helpful?

Solution

try this

$("#abc").parent().next().children('span')

demo

OTHER TIPS

Try this,

Live Demo

var spanElement = $('#abc').parent().next().find('span');
$("#abc").parent().next().children('span')
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top