I has checkbox the list of media in my webpage
<input name="c1" type="checkbox" value=<%= item.MediaId %> />> mediaA
<input name="c1" type="checkbox" value=<%= item.MediaId %> />> mediaB
<input name="c1" type="checkbox" value=<%= item.MediaId %> />> mediaC
In my javascript,How can i keep the checkbox value inside the array for example
if user check for mediaA and mediaC in array will be {12,14}
Thanks ^_^