up vote 1 down vote favorite
share [g+] share [fb]

I have a div having a css class "MyClass". Inside this div, I can have any number of checkboxes immediately followed by an anchor having some specific text (lets say MyText for the example).

How can I select all the checkbox elements using JQuery. What I have is

$('div.givenclass input:checkbox')."I DON"T KNOW WHAT TO PUT HERE"

I want to make sure the the checkboxes I get are immediately before an anchor tag with text "MyText".

Please help!

link|improve this question

75% accept rate
feedback

2 Answers

up vote 4 down vote accepted
$("div.MyClass a:contains(specific test)").prev(":checkbox");
link|improve this answer
Thanks, that worked – user205892 Nov 8 '09 at 4:26
feedback

This will check all checkbox matching it

$('div.givenclass input:checkbox').attr('checked', true);

To restrict before 'my text' achor you can do .prev or check for elements in .each, but better would be to group related checkbox in a div, and select all checkbox in that div

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.