Javascript examples for DOM HTML Element:S
You can create a <s> element by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a S element</button> <script> function myFunction() {//w w w . j av a 2 s. c o m var x = document.createElement("S"); var t = document.createTextNode("Some text that is no longer correct"); x.appendChild(t); document.body.appendChild(x); } </script> </body> </html>