Hi

I want to show a popover on hover or on focus : if the user hover an input 
whith the mous I show the popover but if he click and then tab to another 
input, I want the popover of the new input to be shown.

To do so, I am using the manual mode like that :

    $('.popover-manual').popover({trigger: 'manual'}).focus(function() {
      $(this).popover('show');
    }).blur(function() {
      $(this).popover('hide');
    }).hover(function() {
      $(this).popover('show');
    },function() {
      $(this).popover('hide');
    });

But there is a small blink when I click in my input : does somebody know 
how to avoid this blink ?

Regards
Seb


Reply via email to