javascript - Bootstrap 3 Popover Not Working -
javascript - Bootstrap 3 Popover Not Working -
i've searched reply why popovers aren't working. checked js file (the updated version) popover code , there. jquery works on navigation , carousel on homepage. copied , pasted code button straight bootstrap's website. doing wrong?
go page see problem: http://staging.ceobusinessalliance.com/site-selectors/creative-incentives/ button @ top.
thank you!
you have enable popover functionality first, stated in bootstrap docs:
for performance reasons, tooltip , popover data-apis opt-in, meaning you must initialize them yourself.
you can including little script @ end of html:
$(document).ready(function () { $('[data-toggle="popover"]').popover(); }); working example
and next time please provide jsfiddle or bootply of problem, don't have search entire site.. ;)
javascript jquery css wordpress twitter-bootstrap
Comments
Post a Comment