Ну, у вас нет кода, поэтому я не могу сказать, что случилось с вашим кодом. Вот что я могу сделать вывод
// register a listener on click of any item with the class nav-item
$(document).on("click", ".nav-item", function(){
// turn all nav-items "active" class off
$(".nav-item").removeClass("active");
// turn on the "active" class for this item
$(this).addClass("active");
});