Answers for "document click a button"

2

document on click

$(document).on("click","#test-element",function() {
    alert("click");
});
Posted by: Guest on April-24-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

Browse Popular Code Answers by Language