Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to resolve this issue, what is the problem
Posted
Updated 28-Apr-19 5:00am

Probably you are intending to use jQuery ui tooltip instead of Bootstrap tooltip. Use these lines to revert Bootstrap override:

JavaScript
// return $.fn.tooltip to previously assigned value
var bootstrapTooltip = $.fn.tooltip.noConflict();

// give $().bootstrapTooltip the Bootstrap functionality
$.fn.bootstrapTooltip = bootstrapTooltip

// now activate tooltip plugin from jQuery ui
$(document).tooltip();

Alternatively, make sure you are including bootstrap.js before jquery ui. That will also take care of priority.
 
Share this answer
 
Comments
Deepu S Nair 23-Dec-14 3:02am    
Use Improve Solution link to update solution instead of adding different solutions.
You have simply a conflict between bootstrap and jQuery UI tooltips features.

You can't use booth tooltips feature on the same display. For any choose one and go to customize the other to remove tooltips feature. Remove all other duplicated none-useful features (not useful to use dialog from JQUI or BT too). Download the modified package and replace the .js file in your js directory.

Unchecked unneeded features from : Boostrap customize package or jQuery UI customize package
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900