JSFiddle - React, Tailwind, and code Playground
by Raphaël
HTML
<script src="http://test.famillenourrit.net/bootstrap/bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://test.famillenourrit.net/bootstrap/bootstrap/css/bootstrap.min.css">
<button id="btn-username" type="button" class="btn btn-danger" title="Cliquez ici pour entrer votre nom">Entrez ici votre nom !</button>
JavaScript
$('button').click(function () {
$('#btn-username').popover({
placement: 'bottom',
content: 'Mon popover'
});
$('#btn-username').popover('show');
});