Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:57
Show Gist options
  • Save softiconic/867e1cb11296141707a2188ddbc6f1e6 to your computer and use it in GitHub Desktop.
Save softiconic/867e1cb11296141707a2188ddbc6f1e6 to your computer and use it in GitHub Desktop.
JavaScript for activating tabs.
$(function() {
var $a = $(".tabs li");
$a.click(function() {
$a.removeClass("active");
$(this).addClass("active");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment