Answers for "on click function and get message"

2

css click event jquery

$('h1').click(function () {
        $(this).css('color', 'blue')
    });
Posted by: Guest on March-05-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

Browse Popular Code Answers by Language