I am using Bootstrap 3.1.1 for my project. Each cell in my table contains data like 000 or 111. On hover, I want to display this data as a tooltip. So
000
111
You can set the "data-container" at this way:
// initalize boostrap tooltip $(function () { $('[data-toggle="tooltip"]').tooltip({ container: 'body' }) })