I have a bunch of checkboxes that are created dynamically on page load and written like so:
<input type='checkbox' name='quicklinkscb' id='quicklinkscb_XX'/>
where XX represents the id of the item from the database.
I want to be able to parse the page via javascript for all checkboxes and:
find their id and strip the 'quicklinksscb_' from it and:
if(checkbox is checked)
{
add to add list
}
else
{
add to remove list
}
I can't do this via checkbox list and I want to do this all client side
Can someone shed some light