“jQuery onclick no funciona” Código de respuesta

jQuery onclick no funciona

$(document).on( 'click', '.classname', function () { 
alert('clicked');
});

**** Another Method ****
// where #wrapper is a static element in which you add the dynamic links.
$( '#wrapper' ).on( 'click', 'a', function () { alert('clicked'); });
7uc1f3r

jQuery Haga clic en No funciona

$(document).ready(function() {
  $("#clicker").click(function () {
    alert("Hello!");
    $(".hide_div").hide();
  });
});
Nasty Newt

jQuery haga clic en la función no funciona?

//Why is this jQuery click function not working?
//You are supposed to add the javascript code in a $(document).ready(function() {});

$(document).ready(function() {
  $("#clicker").click(function () {
    alert("Hello!");
    $(".hide_div").hide();
  });
});
Crowded Capuchin

Respuestas similares a “jQuery onclick no funciona”

Preguntas similares a “jQuery onclick no funciona”

Más respuestas relacionadas con “jQuery onclick no funciona” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código