Before T3 1.0.1 version I was able to use Bootstrap's tooltip function by adding that code in the template's head.php:
<script>
jQuery(window).load(function() {
jQuery('a[rel="tooltip"]').tooltip();
})
</script>
But after I updated to v1.0.1 tooltip function doesn't work even if I add same code (above) in the head.php. What's been changed and how can I make it work again?
Thanks...