bootstrap-toc
bootstrap-toc copied to clipboard
Add "Back to top"?
Boostrap official site has a "Back to top" at the end of the TOC. Could bootstrap-toc add the same feature?
Pull request welcome! Would want to make it optional.
Simple way without PR:
$(function() {
var navSelector = "#toc";
var $myNav = $(navSelector);
Toc.init($myNav);
$myNav.append('<a class="back-to-top" href="">Back to top</a>');
$("body").scrollspy({
target: navSelector
});
});