The Bootstrap tooltip is overwriting $.fn.tooltip. How can I call $.ui.tooltip on my element?
For context, I'm using PrestaShop 8 which ships with Bootstrap 4. I can't modify the loaded scripts.
Is there a way to still be able to use jQuery UI Tooltip?
Here's the code that I tried
$.ui.tooltip(node) // this gave me an error
$.ui.tooltip.prototype._tooltip(node) // also gave an error
Thank you