Answers for "how to write onclick function in jquery"

6

jquery onclick function

$( "#other" ).click(function() {
  $( "#target" ).click();
});
Posted by: Guest on June-03-2020
2

on click jqueyr

//Click for event to trigger

$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});
Posted by: Guest on July-25-2020
-2

onclick Event jquery

// Html
<input type="text" onchange="MyFuction(this)" />
  
// Js  
function MyFunction(item) {
  var input = $(item);
  console.log(input);
}
Posted by: Guest on December-29-2020

Code answers related to "how to write onclick function in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language