jquery button onclick function code example

Example 1: on click jquery

$( "#dataTable tbody tr" ).on( "click", function() {
  console.log( $( this ).text() );
});

Example 2: jquery onclick function

$( "#other" ).click(function() {
  $( "#target" ).click();
});

Example 3: button click function in js

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

<input type="button" value="Capacity Chart" id="MyButton" >

Example 4: onclick Event jquery

// Html
<input type="text" onchange="MyFuction(this)" />
  
// Js  
function MyFunction(item) {
  var input = $(item);
  console.log(input);
}

Tags:

Html Example