Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save luisfelipe-dev/e89b07d2aab7662450edf18dd8688f60 to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/e89b07d2aab7662450edf18dd8688f60 to your computer and use it in GitHub Desktop.
// AO CLICAR ADICIONAR A CLASSE REFERENTE AO ID
$(document).ready(function() {
$(".pagina-interna__conteudo-desk--esq ul li").on("click", function() {
// alert("clicked");
$(this)
.siblings()
.removeClass("active");
$(this).addClass("active");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment