“jQuery en clic” Código de respuesta

JQuery Haga clic en la función

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

Documento en hacer clic en jQuery

$(document).on("click", ".onClass", function () {
    //your code
    var element = $(this); // to get clicked element
});
Alex Logvin

función jQuery onClick

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

CSS CLIC Evento jQuery

 $('h1').click(function () {
        $(this).css('color', 'blue')
    });
Weary Wren

jQuery en clic

$( "p" ).on( "click", function() {
  alert( $( this ).text() );
});
Shadow

jQuery en clic

$(document).on('click touch', '.your-element', function () { ... });
Blushing Baboon

Respuestas similares a “jQuery en clic”

Preguntas similares a “jQuery en clic”

Más respuestas relacionadas con “jQuery en clic” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código