Skip to content

Instantly share code, notes, and snippets.

@asha23
Created August 14, 2019 08:27
Show Gist options
  • Save asha23/469604ec05d020795cc6dab0fbc9f4dd to your computer and use it in GitHub Desktop.
Save asha23/469604ec05d020795cc6dab0fbc9f4dd to your computer and use it in GitHub Desktop.
// NAV TOGGLER
// =======================================================
$(".navbar-toggle-custom").click(function () {
$(this)
.children("div")
.toggleClass("active");
$(this).toggleClass("active");
});
// DROPDOWN ANIMATE
// =======================================================
$('.dropdown-toggle').click(function () {
$(this).next('.dropdown-menu').slideToggle(200);
});
$('.dropdown-toggle').focusout(function () {
$(this).next('.dropdown-menu').slideUp(200);
})
// Stop dropdown propagation
$('.dropdown-menu a').click(function (e) {
e.stopPropagation();
});
// Widow killer
// =======================================================
function no_widows(the_class){
$(the_class).each(function(index, value){
let inner_html, output_html;
inner_html = $(this).text();
output_html = widont(inner_html);
$(this).text(output_html);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment