npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

jquery.toc

v0.4.0

Published

A minimal, tiny jQuery plugin that will generate a table of contents, drawing from headings on the page.

Readme

Table of Contents jQuery Plugin - jquery.toc

A minimal, tiny jQuery plugin that will generate a table of contents, drawing from headings on the page.

The generated TOCs are semantic, nested lists (ul or ol) with hash-link anchors to the headings.

Usage

You can download the latest release, or install with Bower: bower install jquery.toc.

Include jQuery (>= 1.6) and jquery.toc.js/jquery.toc.min.js on your page. The plugin can then be used either via HTML5 data attributes, or via the programmatic API. See below for the available options.

Via data attributes

Minimal example:

<ul data-toc></ul>

With options:

<ol data-toc="div.container" data-toc-headings="h2,h3,h4"></ol>

Via the JavaScript programmatic API

Minimal example:

<ul id="toc"></ul>
...
<script type="text/javascript">
    $("#toc").toc();
</script>

With options:

<ul id="toc"></ul>
...
<script type="text/javascript">
    $("#toc").toc({content: "div.container", headings: "h2,h3,h4"});
</script>

Options

<ul data-toc="content" data-toc-headings="headings"></ul>

$(...).toc({content: "body", headings: "h1,h2,h3"});

The plugin has two options:

  • content is a selector where the plugin will look for headings to build up the TOC. The default value is "body".
  • headings is a string with a comma-separated list of selectors to be used as headings, in the order which defines their relative hierarchy level. The default value of "h1,h2,h3" will select all h1, h2, and h3 elements to build the TOC, with h1 being a level 1, h2 a level 2, and so on. You can use any valid list of jQuery selectors; for example, if you just want h1 tags with a specific class, and no h3 tags, you could use "h1.title,h2" for this parameter.

In addition, the plugin will create nested lists of the same type (ul or ol) as the element that it is called on.

Automatic ID generation

The plugin generates hash-links to the headings on the page, to allow users to jump to the heading by clicking in the generated table of contents. This feature requires that the headings have IDs assigned; if they do not, the plugin will generate and assign IDs automatically.

The generated IDs are based on the text inside the headings, and uses two simple rules:

  • Space characters are converted to underscores. Multiple spaces are replaced with a single underscore.
  • If the ID already exists, a suffix like "_1", "_2", etc. is tried till we get a unique ID.

For example, a heading like <h2>Heading 2.1</h2> will get the ID Heading_2.1.

Alternatives

If you're looking for a jQuery plugin that does more than just generate a minimal table of contents, the project wiki lists some more plugins.

License

Licensed under the Apache License, version 2.0.

Credits

Created by Nikhil Dabas.