JQuery -Klick -Funktion
$( "#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
});
$( "p" ).on( "click", function() {
alert( $( this ).text() );
});
$( "#dataTable tbody tr" ).on( "click", function() {
console.log( $( this ).text() );
});
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
$(document).on("click","#test-element",function() {});