Udalosť onclick jquery

Príklady kódu

38
0

funkcia kliknutia jquery

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

na kliknutie jquery

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

funkcia jquery onclick

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

nastaviť onclick jquery

$(elem).click(myFunc());
2
0

jquery na funkciu kliknutia

//1st way
$(".searchCategory").click(function () {
  //your code here
});

//2nd way
$(".searchCategory").on( "click",getCategory);	// getCategory is a function but don't need the pharenthesis
//if you write getCategory() instead of getCategory when getCategory is a function with no pharamenters it might not work

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................