Create a HR Element - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:HR

Introduction

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

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">create a HR element</button>

<script>
function myFunction() {/*from  ww  w.ja v a  2s. co m*/
    var x = document.createElement("HR");
    document.body.appendChild(x);
}
</script>

</body>
</html>

Related Tutorials