rescript 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
Example 3: what does document.getelementbyid return
function changeColor(newColor) {
var elem = document.getElementById('para');
elem.style.color = newColor;
}