Skip to content

Instantly share code, notes, and snippets.

@Fenil265
Created October 18, 2018 08:53
Show Gist options
  • Save Fenil265/3628bfaae706bcfdda5722edbdf36f42 to your computer and use it in GitHub Desktop.
Save Fenil265/3628bfaae706bcfdda5722edbdf36f42 to your computer and use it in GitHub Desktop.
$(selector).popover({ trigger: "manual" , html: false, animation:true})
.on("mouseenter", function () {
var _this = this;
$(this).popover("show");
$(".popover").on("mouseleave", function () {
$(_this).popover('hide');
});
}).on("mouseleave", function () {
var _this = this;
setTimeout(function () {
if (!$(".popover:hover").length) {
$(_this).popover("hide");
}
}, 300);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment