javascript - Link to bootstrap section id from button (not navbar) -
i have bootstrap html page , don't know how link section of page button.
my page has navbar, has normal in it. links work fine , scroll down page correct section.
if create button further down page like:
<div class="span4"> <a class="btn btn-large btn-block btn-danger" href="#pricing">see plans , pricing</a> </div>
the button not scroll part of page. nothing.
any suggestions?
edit 1
posting html here: http://pastebin.com/m9y6nuei
imho, pricing button works well, after cleaning messy code (missing closing tags, empty attributes...).
here working code: http://jsfiddle.net/s4lte/
<div class="span4"> <a class="btn btn-large btn-block btn-danger" href="#pricing">see plans , pricing</a> </div> … <section class="" id="pricing" data-spy="pricing" data-target="#pricing">
Comments
Post a Comment