Answers for "javascript click button with function"

3

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");
}
Posted by: Guest on March-03-2021
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
-1

how to create click function in javascript

var x = document.getElementById('container');
//click can also be antother event
x.addEventListener('click', function (x) {
  console.log('hi');
});
Posted by: Guest on February-21-2021

Code answers related to "javascript click button with function"

Browse Popular Code Answers by Language