I have a question regarding to Bootstrap 3. I want to show popover, when the page is loaded -> when client opens certain html page, popover shows up and then after some time that popover fades out. What is the best way to do this? I am trying this where .poper
is just a div's class around image
$(window).load(function(){
$(".poper").popover('show');
$(".poper").hide(600);
});
Thank You for Your replies.