I also having a problem for highlighting each active menu item using the following js code;
Also here is the link for my project: https://modernbusiness.mburakergenc.com/
// Highlight the top nav as scrolling occurs
$('body').scrollspy({
target: '.navbar-fixed-top'
})
// Closes the Responsive Menu on Menu Item Click
$('.navbar-collapse ul li a').click(function() {
$('.navbar-toggle:visible').click();
});