javascrippt simple button onClickc code example
Example 1: javascript button onclick programmatically
document.getElementById("myCheck").click();
Example 2: html js button onclick
// In HTML:
// <button id="buttonID" onclick="yourJSFunction()">Text</button>
// In JavaScript:
function yourJSFunction() {
// Do stuff
}