Create a Strong Element - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Strong

Introduction

You can create a <strong> element by using the document.createElement() method:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">create a STRONG element with some text</button>

<script>
function myFunction() {/*from   w ww .  j a  v a  2s.c o  m*/
    var x = document.createElement("STRONG");
    var t = document.createTextNode("Some strong text");
    x.appendChild(t);
    document.body.appendChild(x);
}
</script>

</body>
</html>

Related Tutorials