Javascript examples for DOM HTML Element:Input Radio
You can create an <input> element with type="radio" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Radio Button</button> <script> function myFunction() {//from ww w . ja v a 2 s . c o m var x = document.createElement("INPUT"); x.setAttribute("type", "radio"); document.body.appendChild(x); } </script> </body> </html>