Answers for "how to click a button using dom"

0

click a button using javascript

var button = document.getElementById("button");
button.click();
Posted by: Guest on May-20-2020
4

button click function in js

<script>
  $(document).ready(function(){
    $('#MyButton').click(function(){
       CapacityChart();
    });
  });
</script>

<input type="button" value="Capacity Chart" id="MyButton" >
Posted by: Guest on May-27-2020
0

js click on button

window.onload = function() {
    var userImage = document.getElementById('imageOtherUser');
    var hangoutButton = document.getElementById("hangoutButtonId");
    userImage.onclick = function() {
       hangoutButton.click(); // this will trigger the click event
    };
};
Posted by: Guest on October-15-2021

Code answers related to "how to click a button using dom"

Browse Popular Code Answers by Language