The tooltip plugins usually use very similar methods of passing the displayed data, that’s the biggest reason why running more than one tooltip plugin is a bad idea.
So if you’re using CM Tooltip Glossary, you have to be sure to disable/remove all other tooltip plugins/functionality for the expected experience.
There are three groups of tooltip functionalities:
Removing the tooltip functionality from the last group is the most challenging as it requires the code manipulation.
Foundation.js
To remove the tooltip functionality from foundation.js you have to remove the lines from:
;(function ($, window, document, undefined) { 'use strict'; Foundation.libs.tooltip = { name : 'tooltip',
to:
reflow : function () {} }; }(jQuery, window, window.document));