Skip to content

Instantly share code, notes, and snippets.

@agragregra
agragregra / jquery-active.js
Last active April 7, 2022 19:27
jQuery Active Menu
//Active menu
$("li a").each(function() {
if (this.href == window.location.href) {
$(this).addClass("active");
}
});
@agragregra
agragregra / gist:7ae9c76e895b3bacd944
Last active August 16, 2024 19:51
Sublime Text My Settings
// Keymap (Windows Users):
[
{ "keys": ["alt+shift+f"], "command": "reindent" },
]
// Settings:
{
"auto_complete": false,
"bold_folder_labels": true,
"close_windows_when_empty": false,