});
});
// Make current page non clickable
$('.portal .body > ul').children().each( function(){
link = $( this ).children()[0].href;
if ( link === window.location.href ) {
console.log("True");
$( $( this ).children()[0]).css({
"pointer-events": "none",
"cursor": "default",
"color": "#000",
"font-weight": "bold"
});
}
} );
});
// Make current page non clickable
$('.portal .body > ul').children().each( function(){
link = $( this ).children()[0].href;
console.log(this);
console.log(link);
console.log(window.location.href);
if ( link === window.location.href ) {
console.log("True");
$( $( this ).children()[0]).css({
"pointer-events": "none",
"cursor": "default",
"color": "#000",
"font-weight": "bold"
});
}
} );
} else {