Dealing with javascript in Bootstrap

zlatan25

New Member
I am trying to make the "popover" to work for Bootstrap. I believe my code is correct but I am not to sure about the javascript part. Below is what is included inside my head - importing the javascripts - and how my tag looks like. Thank you for the help!\[code\] <script src="http://code.jquery.com/jquery-latest.js"></script> <script src="http://stackoverflow.com/questions/15539644/js/bootstrap.js" type="text/javascript"></script> <script src="http://stackoverflow.com/questions/15539644/js/JSForFinal.js" type="text/javascript"></script><script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>\[/code\]and inside my JFForFinal.js \[code\] $("a[rel=popover]").popover('show');\[/code\]my tag inside my body tag looks like this: \[code\] <a href="http://stackoverflow.com/questions/15539644/#" rel="popover" data-placement="right" data-original-title="popover on right">Stuff</a>\[/code\]I feel like everything is correct but when I click on the button, nothing pops up. Thank you!
 
Back
Top