<div id="dad">
<img id="mum">
<input>
</div>
With jQuery, how could i get access to the input element, get is value or set it for example? I can't work out how to access something on the same level.. and i dont want to be using ID's, just parent/child nodes so i can use the code for loads of dad div's
Thanks!
<div id="dad">
<img id="mum">
<input>
</div>
With jQuery, how could i get access to the input element, get is value or set it for example? I can't work out how to access something on the same level.. and i dont want to be using ID's, just parent/child nodes so i can use the code for loads of dad div's
Thanks!
Share Improve this question edited Feb 1, 2015 at 16:26 Deduplicator 45.8k7 gold badges72 silver badges123 bronze badges asked Oct 3, 2009 at 13:22 tarnfeldtarnfeld 26.6k44 gold badges112 silver badges147 bronze badges6 Answers
Reset to default 6an addition to Zed,
$(this).parent().children('input');
if you give a name to your input field then you can easily select throughout the others,
$(this).parent().children('input[name=my_input]');
then you can give any value as:
$(this).parent().children('input[name=my_input]').val('any value');
Sinan.
var myEl = $("#dad").children(":input");
$(this).parent().children() ?
Try this, to find the first child input element:
jQuery("div").find("input:first")
If i understand question, you would like achieve input
from mum
leve?
So try $("#mum ~ input")...
BTW, great site to search jquery function by category http://visualjquery./ +nice example.
I guess you want to find siblings (node with same depth and same parent and in DOM tree)
$(el).next()
- next element (sibling) for all elements in the set
$(el).nextAll
- all following siblings
$(el).nextUntil
- all following siblings, stop on some condition (not including first "bad match").
Besides, you have next adjacent selector (+) and next sibling selector.
The same about prev, prevAll and prevUntil. And you even have a siblings method. Check this out.