I have a rather simple task but I cannot solve it. I cannot understand how jQuery works with checkboxes.
I have several checkboxes on my page.
<input type="hidden" value="121"/>
<input type="checkbox" value="27" name="option_value[12][]" id="option_value_27" class="filtered option_value" cat="121">
I am trying to select the checked ones with that query:
var chboxes=$(".option_value:checked");
(they all have .option_value style)
I am expecting that I will get an array of objects but I get an array of HTML pieces without methods and properties.
Can I get the array of objects?
I need to use prev() method.
On this forum I have found solution with get(0) but in my case it doesn't work.
.prev()has got to do with the question. – Alnitak Nov 19 '12 at 0:27