How to use the new affix plugin in twitter’s bootstrap 2.1.0?
I was having a similar problem, and I believe I found an improved solution. Don’t bother specifying data-offset-top in your HTML. Instead, specify it when you call .affix(): $(‘#nav’).affix({ offset: { top: $(‘#nav’).offset().top } }); The advantage here is that you can change the layout of your site without needing to update the data-offset-top attribute. … Read more