I am trying to use Bootstrap popover . Therefore, I copied the exact code from the example to my site, which, unfortunately, does not work. I pasted the full code below and created jsfiddle here .
I tried putting it in the bootstrap container and in rows and columns, but nothing works.
Anyone how can I make this violin work? All tips are welcome!
<!DOCTYPE html> <html lang="en"> <head> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <script src="//code.jquery.com/ui/1.11.2/jquery-ui.min.js"></script> <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> </head> <body> <button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-content="And here some amazing content. It very engaging. Right?">Click to toggle popover</button> </body> </html>
javascript html css twitter-bootstrap popover
kramer65
source share