Files
2026-04-28 15:13:50 +02:00

19 lines
294 B
JavaScript

(function ($) {
$(window).on("elementor/frontend/init", function () {
elementorFrontend.hooks.addAction("frontend/element_ready/mfn_tabs.default", function ($scope, $) {
$scope.find('.jq-tabs').each(function () {
$(this).tabs();
});
});
});
})(jQuery);