bootstrap tooltip not working on dynamic elements code example
Example 1: bootstrap tooltip not working
<script type="text/javascript">
$(function () {
$("[rel='tooltip']").tooltip();
});
</script>
Example 2: bootstrap tooltip on dynamic element
$("body").tooltip({
selector: '[data-toggle="tooltip"]'
});