gfranko / jquery.tocify.js

A jQuery Table of Contents plugin that can be themed with Twitter Bootstrap or jQueryUI.
http://gregfranko.com/jquery.tocify.js/
MIT License
927 stars 217 forks source link

Excluding Header Classes #13

Closed mnelson7982 closed 11 years ago

mnelson7982 commented 11 years ago

is there anyway to exclude a class of Headers for the plugin

gfranko commented 11 years ago

Unfortunately you can't do that at this time, you can only exclude certain header types and provide a context (parent elem) that those headers are contained within.

Here is an example of how to tell Tocify to only use h1 and h3 tags via the selectors option:

$("#toc").tocify({ selectors: "h1, h3" });