jQuery(function($) { "use strict"; /* ----------------------------------------- Tabs ----------------------------------------- */ $(".woocommerce-tabs .panel").hide(); $(".woocommerce-tabs ul.tabs li a").click(function (e) { var t = $(this), n = t.closest(".woocommerce-tabs"); n.find("ul.tabs li").removeClass("active"); n.find("div.panel").hide(); n.find(t.attr("href")).show(); t.parent().addClass("active"); e.preventDefault(); }); $(".woocommerce-tabs").each(function () { var t = window.location.hash; t.toLowerCase().indexOf("comment-") >= 0 ? $("ul.tabs li.reviews_tab a", $(this)).click() : $("ul.tabs li:first a", $(this)).click(); }); });