I want to use tootltip of twitter bootstrap in my angularjs web app. when I use them simply in my code and put the jQuery initialization on top of my js file inside document.ready it works perfectly.
$( document ).ready(function(){
$(function () {
$('[data-toggle="tooltip"]').tooltip()
});
$('.myslider').myslider();
});
var myapp = angular.module("eplApp",['ui.router']);
but when I use them in view by ui-routing. It stops working with no error in console.. i am also using more javascript components like crousel. I would like to know how to intialize/call them in view ad document.ready doesn't work in views.
should I initialize them in my controller. if yes than how?