hey everyone,
I have a list of checkboxes which have values for example:
<input name="[0].PostedTerms.TermIds" type="checkbox" value="18">
<input name="[0].PostedTerms.TermIds" type="checkbox" value="20">
etc...
I have a query like this for example:
As you can see here I have PostedTerms.TermIds=18 and .PostedTerms.TermIds=20 which corresponds to checked boxes with those values.
Now I want to use jquery to check the boxes with those values from this list and uncheck all other boxes on my page.
How can this be done? I have no clue where to start...