Fonction de clic jQuery
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
Confused Cobra
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
$(document).on("click", ".onClass", function () {
//your code
var element = $(this); // to get clicked element
});
$( "#other" ).click(function() {
$( "#target" ).click();
});
$('h1').click(function () {
$(this).css('color', 'blue')
});
$( "p" ).on( "click", function() {
alert( $( this ).text() );
});
$(document).on('click touch', '.your-element', function () { ... });