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

html-class-modifier

v0.0.8

Published

A script that enables developers to dynamically modify the class attribute of target elements by adding specific data attributes to the trigger element. These modifications can include:

Downloads

535

Readme

HTML Class Modifier

A script that enables developers to dynamically modify the class attribute of target elements by adding specific data attributes to the trigger element. These modifications can include:

Usage

Class Modification Data Attributes

| Target | Class | |----------|----------| |data-toggle-from | data-toggle-class| |data-add-to | data-add-class| |data-remove-from | data-remove-class|

Multiple Classes and Targets

Group the targets and classes by using the | symbol as a group delimeter. Every target element must have a set of corresponding classes.

data-toggle-from="#element-1, #element-2 | .element-3 | #element-4, .element-5 " data-toggle-class="active, inactive | show, hide | visible, hidden"

Below is a visual representation of the grouped data attribute values:

| Target Elements | Class | |----------|----------| |#element-1, #element-2| active, inactive| |.element-3 | show, hide| |#element-4, .element-5| visible, hidden|

Order of Execution

Various modification attributes can be assigned to a trigger element. When the trigger element is clicked, it will sequentially execute the class modifiers in the same order as the data attributes..

Examples

Toggle a single class from a single target

Toggle the class "show" from "#element"

<div id="element" class="show">Element</div>
<button data-toggle-from="#element" data-toggle-class="show" type="button">Trigger Element</button>

Toggle multiple classes from a single target

Toggle the classes "show" and "hide" from "#element"

<div id="element" class="show">Element</div>
<button data-toggle-from="#element" data-toggle-class="show, hide" type="button">Trigger Element</button>

Toggle multiple classes from multiple targets

Toggle the classes "show", "hide" from "#element-1" and classes "active", "inactive" from "#element-2".

<div id="element-1" class="show">Element 1</div>
<div id="element-2" class="show">Element 2</div>
<button data-toggle-from="#element-1 | #element-2" data-toggle-class="show, hide | active, inactive" type="button">Trigger Element</button>

Toggle the classes "show", "hide" from "#element-1" and "#element-2" and classes "active", "inactive" from every ".element-3".

<div id="element-1" class="show">Element 1</div>
<div id="element-2" class="show">Element 2</div>

<div class="element-3" class="show">Element 3-1</div>
<div class="element-3" class="show">Element 3-2</div>
<div class="element-3" class="show">Element 3-3</div>

<button data-toggle-from="#element-1, #element-2 | .element-3" data-toggle-class="show, hide | active, inactive" type="button">Trigger Element</button>

Add a single class to a single target

Add the class "show" to "#element"

<div id="element" class="show">Element</div>
<button data-add-to="#element" data-add-class="show" type="button">Trigger Element</button>

Add multiple classes to a single target

Add the classes "show" and "hide" to "#element"

<div id="element" class="show">Element</div>
<button data-add-to="#element" data-add-class="show, hide" type="button">Trigger Element</button>

Add multiple classes to multiple targets

Add the classes "show", "hide" to "#element-1" and classes "active", "inactive" to "#element-2".

<div id="element-1" class="show">Element 1</div>
<div id="element-2" class="show">Element 2</div>
<button data-add-to="#element-1 | #element-2" data-add-class="show, hide | active, inactive" type="button">Trigger Element</button>

Add the classes "show", "hide" to "#element-1" and "#element-2" and classes "active", "inactive" to every ".element-3".

<div id="element-1" class="show">Element 1</div>
<div id="element-2" class="show">Element 2</div>

<div class="element-3" class="show">Element 3-1</div>
<div class="element-3" class="show">Element 3-2</div>
<div class="element-3" class="show">Element 3-3</div>

<button data-add-to="#element-1, #element-2 | .element-3" data-add-class="show, hide | active, inactive" type="button">Trigger Element</button>

Remove a single class from a single target

Remove the class "show" from "#element"

<div id="element" class="show">Element</div>
<button data-remove-from="#element" data-remove-class="show" type="button">Trigger Element</button>

Remove multiple classes from a single target

Remove the classes "show" and "hide" from "#element"

<div id="element" class="show">Element</div>
<button data-remove-from="#element" data-remove-class="show, hide" type="button">Trigger Element</button>

Remove multiple classes from multiple targets

Remove the classes "show", "hide" from "#element-1" and classes "active", "inactive" from "#element-2".

<div id="element-1" class="show">Element 1</div>
<div id="element-2" class="show">Element 2</div>
<button data-remove-from="#element-1 | #element-2" data-remove-class="show, hide | active, inactive" type="button">Trigger Element</button>

Remove the classes "show", "hide" from "#element-1" and "#element-2" and classes "active", "inactive" from every ".element-3".

<div id="element-1" class="show">Element 1</div>
<div id="element-2" class="show">Element 2</div>

<div class="element-3" class="show">Element 3-1</div>
<div class="element-3" class="show">Element 3-2</div>
<div class="element-3" class="show">Element 3-3</div>

<button data-remove-from="#element-1, #element-2 | .element-3" data-remove-class="show, hide | active, inactive" type="button">Trigger Element</button>