Ok, found the damn answer:

According to a MSDN article, they give examples of using createElement
to generate a radio button.

document.createElement("INPUT TYPE='RADIO' NAME='RADIOTEST'
VALUE='First Choice'>";

Yup, you have to create the element from a full string. Name has to be
there as well. Value doesn't matter, but name does.

Reply via email to