function addClass() {
var id = $(this).attr('href');
$("a").removeClass('active');
$("div").removeClass('active');
$(this).addClass('active');
$(id).addClass('active');
}
var nodeList = document.querySelectorAll('a');
for( var i = 0; i < nodeList.length; i++) {
nodeList[i].addEventListener('click', addClass);
}