Search code examples
twitter-bootstraptooltip

Bootstrap popover manual close


I need several popovers on a page with manual close.Twitter examples on a Live Demo section shows this functionality but I cant reach it.Who can recommend plug-in (tooltip) with such functionality?


Solution

  • You can manually control the open or close of the Bootstrap Popup (no additional plugin required)..

    $("[data-toggle=tooltip]").tooltip();
    $('#btnToggleTip').click(function(){
    
      $('#tip1').tooltip('toggle'); // <-- alternately use 'show' or 'hide' here
    
    })
    

    Demo: http://bootply.com/97094