jQuery(function ($) { $(".hs_banner .column .item a") .click(function (e) { var link = $(this); var item = link.parent(".item"); if (item.hasClass("active")) { item.removeClass("active").children("a").removeClass("active"); } else { item.addClass("active").children("a").addClass("active"); } if (item.children(".tab-wrap").length > 0) { var href = link.attr("href"); link.attr("href", "#"); setTimeout(function () { link.attr("href", href); }, 300); e.preventDefault(); } }) .each(function () { var link = $(this); if (link.get(0).href === location.href) { link.addClass("active").parents(".item").addClass("active"); return false; } }); });
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter