I have a Bootstrap slider with ticks and tick labels,here I need to change the color of tick labels when I clicked on the particular label.
The below plunker link shows the code that I tried:
Try this:
$('.slider-tick-label').click(function(){
$('.slider-tick-label').css('color','black');
$(this).css('color','lightblue');
});