I need to display a tooltip on a disabled button and remove it on an enabled button. Currently, it works in reverse.
What is the best way to invert this behaviour?>
You can simply override Bootstrap's "pointer-events" style for disabled buttons via CSS e.g.
.btn[disabled] { pointer-events: all !important; }
Better still be explicit and disable specific buttons e.g.
#buttonId[disabled] { pointer-events: all !important; }