Answers for "click event on button"

1

javascript button onclick

document.getElementById('button').onclick = function() {
   alert("button was clicked");
};
Posted by: Guest on May-09-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
1

html javascript button click

<button onClick="alert('some thing to say');">click</button>
Posted by: Guest on August-24-2021

Code answers related to "click event on button"

Code answers related to "Javascript"

Browse Popular Code Answers by Language