Skip to content

Instantly share code, notes, and snippets.

@yriveiro
Forked from avdg/gist:2210109
Created June 25, 2014 09:30
Show Gist options
  • Save yriveiro/412698e8c4f4d20c9994 to your computer and use it in GitHub Desktop.
Save yriveiro/412698e8c4f4d20c9994 to your computer and use it in GitHub Desktop.
var tmp = null;
$('###selector###').popover({
trigger: 'manual',
title: 'testing',
delay: {show:500, hide:100}
});
$('###selector###').hover(function(){
clearTimeout(tmp);
$('###selector###').popover('show');
tmp = setTimeout(function(){$('###selector###').popover('hide')}, 1000);
}, function(){});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment