I created a modal window, and it has a
link with the focus
I want to show / hide poover:
<a tabindex="0" role="button" data-toggle="popover" data-trigger="focus" data-content="And here's some amazing content. It's very engaging. Right?">What type of accounts are found?</a>
The problem is, that only works one time and further, nothing happens when you click. The script for the popover:
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
$('.popover-dismiss').popover({
trigger: 'focus'
});
$('.example-popover').popover({
container: 'body'
});
});
Someone knows what could be the reason?
Error: tether.min.js: 1 Uncaught TypeError: Failed to execute 'removeChild' on 'Node': parameter 1 is not of type 'Node'