document.getElementById( .. , ..) code example
Example 1: getelementbyid
document.getElementById("someid");
Example 2: javascript get element by id
var myElement=document.getElementById("someElementID");
Example 3: document.getelementbyid() javascript
var x = document.getElementById("demo"); // Get the element with id="demo"
x.style.color = "red"; // Change the color of the element
Example 4: document.getElementById
function changeColor(newColor) {
var elem = document.getElementById('para');
elem.style.background-color = newColor;
}
Example 5: how to use document.getelementbyid
<p id="YourId">How to use document.GetElementById in HTML</p>
<script>
function demo(){
document.GetElementById('YourId')..innerHTML('/* what will it change... */')
}
</script>
<button onclick="demo()">Click Me!!!</button>