Javascript examples for DOM HTML Element:Italic
You can create an <i> element by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create an I element with some text</button> <script> function myFunction() {/* w w w . j a v a 2 s . c om*/ var x = document.createElement("I"); var t = document.createTextNode("Some italic text"); x.appendChild(t); document.body.appendChild(x); } </script> </body> </html>