I want to style(css) some bootstrap-tooltip.js tooltips, without affecting all the tooltips. I have tried many different solutions but i allways end up adding a class to the ele
Alternative to this answer that works in case the selector returns many tooltips:
$("[id$=amount]") .tooltip() .each((i, el)=> $(el).data('bs.tooltip').tip().addClass('test'));
(it should be OK for bootstrap 2 and 3).