javascript click on input code example
Example 1: javascript click button by id
var button = document.getElementById("button");
button.click();
Example 2: click button javascript
// Create variable for what you are trying to click
let button = document.querySelector("#IDofItem");
// Click the button
if (button) {
button.click();
}
else {
console.log("Error");
}