javascript - USe JSON to store and output radio buttons -
i have page user logs in , able see list of static tasks must accomplish , added radio button each task this:
<div data-role="collapsible-set"> <div data-role="collapsible"> <h3>12 months</h3> <div id="task_1" data-role="fieldcontain"> <fieldset data-role="controlgroup" data-type="vertical" data-mini="true"> <legend></legend> <input id="radio3" name="" value="" type="radio"> <label for="radio3">begin research</label> </fieldset> </div>
this same code repeats tasks. using ajax, how can value each radio button , save database when log in can see radio buttons clicked?
Comments
Post a Comment