Le retard de Popover au bootstrap ne fonctionne pas

Je veux la liste de cacher après un certain temps. J'ai codé this -> CODE travail..

JS

$('#qoo').popover({
    placement : 'left',
    html : true,
    delay: { 
             show: 500, 
             hide: 100
    },
    content: function() {
    return $('#content-wrapper1').html();
}                 

});

HTML

<div class="span1 offset1">
     <a href="#" id="qoo" rel="popover" data-original-title="TITLEEEE" class="circle"> textttt</a>
     <div id="content-wrapper1" class="content-wrapper"> texttttttat</div> 
</div>

Mais ça ne fonctionne pas.

source d'informationauteur yaylitzis