button onclick in jquery code example

Example 1: jquery onclick function

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

Example 2: on click jqueyr

//Click for event to trigger

$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});

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:

Java Example