I defined a JQfactory plugin like this
(function($, window, document) { $.jqfactory('my.tooltip', { }, false); }(jQuery, window, document));
Now, believing that I have included the Bootstrap platform also on my page, and I want to name only my version of tooltip() , and not the bootstrap version. How to achieve using $.my.tooltip ?
source share