javascript find getelementbyid code example
Example 1: getelementbyid
document.getElementById("someid");
Example 2: document.getelementbyid() javascript
var x = document.getElementById("demo"); // Get the element with id="demo"
x.style.color = "red"; // Change the color of the element