Check Checkboxes?
Check Checkboxes?
Hi,
I have an ajax call that returns a comma delimited list of ids (3,5,7,25). When the response comes back from my ajax call, I want to preselect the checkboxes in my form that match the ids.
The checkbox html looks like below. I'm using ColdFusion and just looping over a server-side query and creating my checkboxes dynamically.
- <div class="personCheckBoxes">
<cfloop query="qPersons">
<input type="checkbox" name="personId" id="personId_#person_id#" value="#person_id#" />
</cfloop>
</div>
So the final output of the checkbox html would be:
<input type="checkbox" name="personId" id="personId_3" value="3" />
<input type="checkbox" name="personId" id="personId_5" value="5" />
<input type="checkbox" name="personId" id="personId_7" value="7" />
<input type="checkbox" name="personId" id="personId_25" value="25" />
How can I check them given the response from the ajax call?
Thanks,