Last active
December 2, 2023 18:57
-
-
Save softiconic/867e1cb11296141707a2188ddbc6f1e6 to your computer and use it in GitHub Desktop.
JavaScript for activating tabs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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