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 🙏

© 2024 – Pkg Stats / Ryan Hefner

js-toggler

v1.1.0

Published

Toggle everything!

Downloads

18

Readme

toggler

Usage

  • Import script toggler.js
    • Import script classic <script src="js/toggler.js"></script>
    • Import script ES6 import toggler from 'js-toggler
  • Call function togglers when document is ready
$(function () {
    togglers.init();
});
  • Mark your html buttons with class JS_toggler, a unique id string or number data-toggler-id="1" and name a group for them data-toggler-group="tab-item". Only one or many.
<ul>
    <li><a data-toggler-id="1" data-toggler-group="tab-item" class="JS_toggler active">btn 1</a></li>
    <li><a data-toggler-id="2" data-toggler-group="tab-item" class="JS_toggler">btn 2</a></li>
    <li><a data-toggler-id="3" data-toggler-group="tab-item" class="JS_toggler">btn 3</a></li>
    <li><a data-toggler-id="4" data-toggler-group="tab-item" class="JS_toggler">btn 4</a></li>
    <li><a data-toggler-id="5" data-toggler-group="tab-item" class="JS_toggler">btn 5</a></li>
</ul>
  • These buttons are linked to your content divs with attribute data-toggler-itemid="1". One content div or many.
<div data-toggler-itemid="1" data-toggler-group="tab-item" class="JS_item_toggler active">
    tab content 1
</div>
<div data-toggler-itemid="2" data-toggler-group="tab-item" class="JS_item_toggler">
    tab content 2
</div>
...
  • Use your own css to style .active elements !

Events / callback

Your html content can listen to events open.content and close.content Example :

$('.JS_item_toggler').on('open.content', function () {
    dosomething();
});

Todo

  • Documentation

    • events
  • Examples :

    • layers

Version update

1.1

  • Bring params to change css class and events