i have a problem in creating radio buttons dynamically, i have a text box and a button, i asked the user to input a value in the text field then i retrieve the text box value and use it to create a radio button when he press a button, i tried this code in javaScript but it doesn't create a radio button on clicking the specified button:
<script type="text/javascript" >
function createRadioElement(value, checked) {
var radioHtml = '<input type="radio" value="' + value + '"';
if ( checked ) {
radioHtml += ' checked="checked"';
}
radioHtml += '/>';
var radioFragment = document.createElement('div');
radioFragment.innerHTML = radioHtml;
return radioFragment.firstChild;
}
$( '#admin' ).live( 'pageinit',function(event){
$( "#AddButton" ).bind( "click", function(event, ui) {
var x=document.getElementById('option').value
createRadioElement(x, checked);
});
});
</script>
`

createElement()andappendChild()methods or jQuery'sbefore(),after(),append()orappendTo()methods. Pick any of the above, that should get you on your way. Especialy look into where elements go after usingcreateElement(), and what other properties appart from innerHTML you can set. PS: pls, accept rate matters to people... if you want them to take the time and help you, just show it's appreciated. Thanks – Elias Van Ootegem Mar 5 '12 at 21:32