Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Last active May 9, 2020 13:48
Show Gist options
  • Save gavilanch/e786833ddd1d2663a61039673d3af8fa to your computer and use it in GitHub Desktop.
Save gavilanch/e786833ddd1d2663a61039673d3af8fa to your computer and use it in GitHub Desktop.
$(document).on("click", "#counterClick", function (e) {
var container = $(this).closest(".counter-container").get()[0];
var title = container.querySelector("h1");
console.log("click JavaScript");
$(this).html("Hola");
title.innerHTML = "El botón ha sido clickeado jQuery!";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment