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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -