Navigate into elements with JQuery

54 Views Asked by At

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

3

There are 3 best solutions below

0
On BEST ANSWER

try this

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

demo

0
On

Try this,

Live Demo

var spanElement = $('#abc').parent().next().find('span');
0
On
$("#abc").parent().next().children('span')