I am currently attempting to implement a bootstrap pills example found here. However, I have noticed that the example lacks corresponding javascript or css for highlighting the clicked pill. How can I achieve the desired effect of turning the pill purple when clicked? The code snippet I have tried is as follows, but it does not seem to be working. Any assistance would be greatly appreciated.
$('#nav-link').on('click', function(e) {
this.backgroundColor = 'black';
});