angular bootstrap popover hide after few seconds
问题 This is my html code: <li class="pop" popover="popover text goes here" popover-trigger="mousedown"> <a><i class="icon-link"></i></a> </li> When clicking the icon a popover is opened as expected. Currenly the popover is close only by click on the icon. I wish that the popover will be closed automaticaly after few seconds. This is my javascript code - which does not work: $('.pop').popover().click(function () { setTimeout(function () { $('.pop').popover('hide'); }, 4000); }); when running $('