Element style Property - Get the value of a <p> element's top-border: - Javascript DOM

Javascript examples for DOM:Element style

Description

Element style Property - Get the value of a <p> element's top-border:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<p id="myP" style="border-top: 5px solid red;">Click the button to get the value of my top border.</p>

<button onclick="myFunction()">Test</button>

<p id="demo"></p>

<script>
function myFunction() {// w  ww . j  ava  2 s  .c  o  m
    var x = document.getElementById("myP").style.borderTop;
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>

Related Tutorials