Try hovering over the text in the link below. If you try to hover over the text a bit too quickly in succession then the popover doesn't display.
https://jsbin.com/rohutokodu/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/jquery.webui-popover/1.2.1/jquery.webui-popover.min.css">
</head>
<body>
<div data-toggle="popover" data-content="OKAY">TEST</div>
<script src="https://cdn.jsdelivr.net/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/jquery.webui-popover/1.2.1/jquery.webui-popover.min.js"></script>
<script>
$("[data-toggle='popover']").webuiPopover({
trigger: "hover",
type: "html",
delay: {
show: 0,
hide: 0
}
});
</script>
</body>
</html>
Try hovering over the text in the link below. If you try to hover over the text a bit too quickly in succession then the popover doesn't display.
https://jsbin.com/rohutokodu/