Thuat Huu Nguyen

Results 3 comments of Thuat Huu Nguyen

With CSS, make sure you let `bootstrap-toc.min.css` right under `bootstrap.min.css`. **Do not let any other CSS between them**. With Jquery and JS, make sure you let `bootstrap-toc.min.js` right under `bootstrap.min.js`....

And if above solution does not work, you can try to use JS to remove one of two duplicated TOCs. $(document).ready(function () { $("#toc ul").eq(0).remove(); });

When my TOC plugin created two Table of contents instead of one, I checked the .html source in browser's developer mode and I see that it created two `` inside...