d2321
5/14/2020 - 9:46 PM

trigger all excerpts div, outside

jQuery(function($){
	$(document).on('click touch', function (e) {

    // Check if click was triggered on or within #menu_content
    if( $(e.target).closest(".subFixedPortf").length > 0 ) {
        return false;
    }

    closeRightPortf();
	
	function closeRightPortf() {
		$('.fixedRightPortf').removeClass('show');
	}
});	

});