get element by id syntax code example
Example 1: javascript get element by id
var element = document.getElementById("YourElementId");
Example 2: how to use document.getelementbyid
<p id="YourId">How to use document.GetElementById in HTML</p>
<script>
document.GetElementById('YourId')./* The thing you need to do to your code... Here I want .innerHTML you can take any... */.innerHTML('/* what will it change... */')
</script>
Example 3: how to get an element by id in javascript
document.getElementById("IdGoesHere");