Skip to content

Instantly share code, notes, and snippets.

@tivie
Created December 31, 2019 18:41
Show Gist options
  • Save tivie/d28a6ffb2c608b97776355456e64cbe4 to your computer and use it in GitHub Desktop.
Save tivie/d28a6ffb2c608b97776355456e64cbe4 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$(".area_select_bookmark a").click(function(ev) {
$(".bookmark").removeClass("active");
var bkm = $(this).attr("href");
$(bkm).addClass("active");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment