Skip to content

Instantly share code, notes, and snippets.

@iiiBird
Last active June 11, 2020 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iiiBird/44ca256e05898091fcfcd85f7ecb7361 to your computer and use it in GitHub Desktop.
Save iiiBird/44ca256e05898091fcfcd85f7ecb7361 to your computer and use it in GitHub Desktop.
bootstrap popover container this
<div class="custom-popover-wr">
<div class="custom-popover" data-container="body" data-toggle="popover" data-trigger="hover" data-placement="bottom" data-content="Text">
111
</div>
</div>
$('.custom-popover').each(function() {
$(this).popover({
container: $(this).parent()
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment