i'm creating radio buttons dynamically for 2 pages asynchronously, i.e. i have a form the user have to enter a poll and generate many radio buttons as options to answer the question(the first page), when the user finished entering data, he has to view a summary of what he had entered(the second page) right now it works clear, but when the user returns back for the first page(for editing his options)if he deleted any of his options it doesn't deleted from the second page, see my HTML and script code here http://jsfiddle.net/Mnqc7/6 thanks
<!--First page-->
<div data-role="header">
</div><!-- /header -->
<div data-role="content">
<div data-role="collapsible" data-inset="true">
<h1>AddPoll</h1>
<div data-role="fieldcontain" >
<label for="name"> <strong>Question:</strong></label>
<input type="text" name="name" id="question" value="" /><br>
AddDelete
<!--Generated radio buttond goes here-->
</div>
</form>
</div>
<a href="#approve" id="publish" data-role="button" data-inline="true" data-transition="flip">Preview</a>
</div><!-- /content -->
<!-- </fieldset>-->
<div data-role="footer" data-position="fixed" data-id="ew-footer" class="ui-splitview-hidden">
</div><!-- /footer -->
</div><!-- /page -->
<!--Second page-->
<div data-role="page" id="approve" data-theme="a" class="page" >
<div data-role="header">
</div><!-- /header -->
<div data-role="content">
<h1 id="headTitle"></h1>
<div id="Inserthere" data-role="controlgroup">
<!--Generated radio buttond goes here-->
</div>
<a href="#admin" id="" data-role="button" data-inline="true" data-transition="flip">Back</a>
</div><!-- /content -->
<div data-role="footer" data-position="fixed" data-id="ew-footer" class="ui-splitview-hidden">
</div><!-- /footer -->
</div><!-- /page -->
Script:
function createRadioElementForFirstPage(elem, label, checked) {
var id = 'option1_' + label;
$('#after').append($('<input />', {
'type': 'radio',
'fieldset':'group',
'name': 'option1',
'id': id,
'data-role': 'controlgroup',
'data-theme':'b',
'value': '1'}));
$('#after').append('<label for="' + id + '">'+ label + '</label>').trigger('create');}
function createRadioFortSecondPage(elem, label, checked) {
var id = 'option1_' + label;
$('#Inserthere').append($('<input />', {
'type': 'radio',
'fieldset':'group',
'name': 'option1',
'id': id,
'data-role': 'controlgroup',
'data-theme':'b',
'value': '1'}));
$('#Inserthere').append('<label for="' + id + '">'+ label + '</label>').trigger('create');}
function createRadioFortSecondPage(elem, label, checked) {
var id = 'option1_' + label;
$('#Inserthere').append($('<input />', {
'type': 'radio',
'fieldset':'group',
'name': 'option1',
'id': id,
'data-role': 'controlgroup',
'data-theme':'b',
'value': '1'}));
$('#Inserthere').append('<label for="' + id + '">'+ label + '</label>').trigger('create');}
function insertIntoPreviewPage(){
var labels = [];
$('#after input[type=radio]').each(function() {
labels.push($('label[for='+$(this).attr('id')+']').text());
createRadioFortSecondPage('#approve',labels[i],true);
});}
$( '#admin' ).live( 'pageinit',function(event){
$('#AddButton').click(function(){
var x = document.getElementById('option').value;
}});
$('#RemoveButton').click(function(){
var id = $('#after').children().children("input[checked='checked']").get(0).id;
$('#after').children().children("input[checked='checked']").parent().remove()
approve.$("#" + id).parent().remove(); }});
$('#publish').click(function(){
var y=document.getElementById('question').value
var form='<value="' + y + '"'+'/>'
var labels = [];
$('#after input[type=radio]').each(function() {
labels.push($('label[for='+$(this).attr('id')+']').text());
});
for(var i=0;i<labels.length;i++){
form+='\n<opt value="' + labels[i] + '"'+'/>'
createRadioFortSecondPage('#approve',labels[i],true);
}
alert(form);
document.getElementById('headTitle').innerHTML=y;
});
