So... I am trying something pretty ambitious (at least for myself). I am having difficulty finding a specific command or line of code that will do the following in HTML5
<body>
<p> The square root will go underneath </p> <input id="Number"><button onclick="ARE_YOU_SERIOUS">Check it</button>
<p id="Place Holder"></p>
<script>
function ARE_YOU_SERIOUS()
var x = document.getElementbyId("Number").value
document.getElementbyId("Place_Holder").innerhtml = SQUARE ROOT(x)
</script>
I do not want to calculate the square root of x, I just want to print a square root that will contain x in a specific placeholder