/var/www/protarget.com.ua/www/public/js
NameSizeModeActions
jquery-3.6.0.min.js895010644editdlrm
jquery.animateTyping.js52480644editdlrm
libs.js1101660777editdlrm
libs.js.map1360777editdlrm
main.js5160644editdlrm
owl.carousel.min.js443440644editdlrm
script.js2807460775editdlrm
script.js.map1400775editdlrm
Edit: /var/www/protarget.com.ua/www/public/js/main.js (516B)
// cache collection of elements so only one dom search needed var $casesElements = $('.cases'); $('.filter_link').click(function(e){ e.preventDefault(); $('.filter_link').removeClass("__active"); $(this).addClass("__active"); // get the category from the attribute var filterVal = $(this).data('filter'); if(filterVal === 'all'){ $casesElements.show(); }else{ // hide all then filter the ones to show $casesElements.hide().filter('.' + filterVal).show(); } });