• Resolved Sourav Pan

    (@microbiologynote)


    <script type="text/javascript"> 
        jQuery( document ).ready(function($) {
            
            $(document).on("click","[data-tab]",function() {
                const element = $(this);
                const tabID = element.data('tab');
                
                const tabContent = $([data-tab-content="${tabID});
                
                const currentElement = $([data-tab].activeTab);
                const currentTab = $([data-tab-content].active);
                
                
                element.addClass('activeTab');
                currentElement.removeClass('activeTab');
                currentTab.removeClass('active').hide();
                tabContent.addClass('active').show();
                
            });    
        });
       
    </script>

    I want to exclude this from litespeed js optimization, how i can do this?

Viewing 1 replies (of 1 total)
  • Thread Starter Sourav Pan

    (@microbiologynote)

    this code is showing when admin is login but not showing when goining to incognite mode

Viewing 1 replies (of 1 total)
  • The topic ‘I want to exclude this js code’ is closed to new replies.