Article


$(window).load(function(){
// find the hash in the URL and removes the #
var et_hash = window.location.hash.substr(1);
var et_filter = $( '.et_pb_portfolio_filter a[data-category-slug="' + et_hash + '"]' );

if(window.location.hash && et_filter.length) {
// if it finds a hash and the filter exists, then add the active class
$(et_filter).addClass('active')

// removes the active class from the all filter
$( '.et_pb_portfolio_filter a[data-category-slug="all"]' ).removeClass('active')
}
});