Javascript examples for DOM HTML Element:Kbd
You can create a <kbd> element by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a KBD element with some text</button> <script> function myFunction() {/*from w ww.j a v a 2 s.c o m*/ var x = document.createElement("KBD"); var t = document.createTextNode("Keyboard input text"); x.appendChild(t); document.body.appendChild(x); } </script> </body> </html>