Javascript examples for DOM HTML Element:DFN
You can create a <dfn> element by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a DFN element with some text</button><br><br> <script> function myFunction() {//from www .j a va2 s.c o m var x = document.createElement("DFN"); var t = document.createTextNode("A definition term"); x.appendChild(t); document.body.appendChild(x); } </script> </body> </html>