Javascript examples for DOM HTML Element:Details
You can create a <details> element by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a DETAILS element</button> <script> function myFunction() {/*from w ww. j a va2 s .c o m*/ var x = document.createElement("DETAILS"); var t = document.createTextNode("Some additional details..."); x.appendChild(t); document.body.appendChild(x); } </script> </body> </html>