i have 3 hidden fields in 1 div. when I have reference to this div, how to get 1 of the hidden fields in this div.
|
feedback
|
|
This will also work (jQuery):
| |||||||
feedback
|
|
Without any code it's hard to help but i'd say give the hidden field an ID and use:
Or if you're using Jquery use:
| |||
|
feedback
|
|
Assuming you have a DIV, like so:
You can use jQuery to do something like this to select all of them:
With that selector, now you have all 3 hidden fields in a jQuery collection. You can pick and choose from there which one you want to use by using several methods:
The options are:
I am personally a fan of option 3 as I don't like having too much crap in my selector. One caveat of the above is that by using the
| ||||
|
feedback
|
|
if it's like this:
and you're using jquery, you can just write this:
and it should return a reference to the 1st hidden field. if you want the 2nd, use "eq(2)" and so forth. | |||
|
feedback
|
:first pseudo-class and attribute selector or
:hidden pseudo-class (be careful, because :hidden finds also elements with style="display: none") or
where 'ref' variable is a reference to the DIV element | ||||
|
feedback
|
|
I would assign a class to the hidden you want to find - a little easier on the programmer looking back on it in 4 years. I'm using "id" as an example of the hidden. Once you find it with jQuery - you can use .val() to get its value. HTML:
jQuery:
| |||||||
feedback
|
|
For a reference, if you're not using jQuery like the original poster and assuming the structure above:
| |||
|
feedback
|