Hello Kien,
Thanks for your reply and example for the Bootstrap popover. I had to look at the source code for the example article you provided and it appears that your code is slightly different from the standard Bootstrap popover code. For example, your code:
Code:
<script>
jQuery(document).ready(function($){
$('[data-toggle="popover"]').popover();
});
<script>
And the standard Bootstrap code:
Code:
<script>
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
});
</script>
The difference is that you have used “jQuery” instead of “$” at the beginning of the first line of code and added “$” to the end of the first line. Hmmm… This appears unusual

but it does produce the required result!

However, when clicking on the link the page scrolls to the top of the page, as it does on your article demo page. Replacing href="javascript://" with href="#" seems to prevent the scrolling. Thank you for taking time to look into this matter and producing a solution.
A final note, could you say when the Jarvis framework will receive its next update with a revised version number and changelog?
Kind Regards,
SJ