Posts by Gabriel Stimamiglio • 1 point
1 post
-
0
votes2
answers175
viewsA: Pass value of javascript variables inside Bootstrap Popover
You can inside the .popover() use the content options let teste = 'teste2' $(document).ready(function(){ $('[data-toggle="popover"]').popover({ placement : 'bottom', content: teste, html: true });…