Javascript examples for DOM HTML Element:Fieldset
You can create a <fieldset> element by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a FIELDSET element with some text</button> <script> function myFunction() {//ww w .j a va 2 s . c o m var x = document.createElement("FIELDSET"); var t = document.createTextNode("Insert content here..."); x.appendChild(t); document.body.appendChild(x); } </script> </body> </html>