VISIT http://jsfiddle.net/housekeepings/qx5a4wf3/3/
The Tooltip function can work well on the first page,

but failed when change to page two!
How can redraw the tooltip on the other page?
VISIT http://jsfiddle.net/housekeepings/qx5a4wf3/3/
The Tooltip function can work well on the first page,

but failed when change to page two!
How can redraw the tooltip on the other page?
The tooltip is being applied when the dom is ready on page load and is not being re-applied to new elements coming into the dom when the table view is drawn again. DataTables has a draw event that is triggered when the state of the table changes. A listener can be attached to this event and have the tooltip applied when the draw event fires.
$('#table_id').DataTable({responsive: true,}).on("draw", function() {
$('[data-toggle="tooltip"]').tooltip();
});