I am trying to dynamically generate a group of radio button, however when I add a radiobutton with jQuery the name attribute is not set properly.
var radioButtonInput = document.createElement("input")
var groupId = groupNodes[i].getAttribute("id");
var groupName = groupNodes[i].getAttribute("displayName");
$(radioButtonInput).attr("type","radio");
$(radioButtonInput).attr("name","radioGroup");
$(radioButtonInput).attr("id", groupId);
$("#meetingType h2").after(radioButtonInput);
The radio buttons are created correctly but the name attribute is not present. I've tried to use the html dom attribute .name but it generates the same result.
.getAttribute("displayName")– Josiah Ruddell Dec 13 '10 at 19:30