I have defined a JQfactory plugin like this
(function($, window, document) {
$.jqfactory('my.tooltip', {
/* My tooltip code */
}, false);
}(jQuery, window, document));
Now assuming I have included Bootstrap framework also in my page, and I want to call my version of tooltip()
only, not the bootstrap version. How do I achieve using the namespace $.my.tooltip
?