Domanda

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

È stato utile?

Soluzione

try this

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

demo

Altri suggerimenti

Try this,

Live Demo

var spanElement = $('#abc').parent().next().find('span');
$("#abc").parent().next().children('span')
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top