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

jquery.ruk

v1.0.0

Published

Yet another full-fledged jQuery accordion plugin with bare minimum code

Downloads

3

Readme

jquery.ruk

Yet another full-fledged jQuery accordion plugin with bare minimum code. 607 bytes only (418 bytes : js, 189 bytes : css

Dependency

Since it is a jQuery plugin; jQuery library should be included on prior.

Instalation

Include jquery.ruk.min.css from dist folder.

<link rel="stylesheet" href="./dist/jquery.nok.min.css">

Include jquery.ruk.min.js from dist folder.

<script src="./dist/jquery.nok.min.js"></script>

Initiate the plugin.

$('.target').ruk();

Thats all. Your target div is now ruk (an accordion).

npm? npm install jquery.ruk

Target Element Structure

The target element should have div groups, each containing collapse groups in div pairs : one for title and the other for content (that will hide or show). Targetting element structure other than this may cause the plugin malfunction. Example:

<div class="target"> <!-- the ruk element -->

    <div> <!-- group : 1 -->
        <div>Title Block</div> <!-- title block -->
        <div>Content Block</div> <!-- content block (will show / hide) -->
    </div>

    <div> <!-- group : 2 -->
        <div>Title Block</div>
        <div>Content Block</div>
    </div>

    <div> <!-- group : 3 -->
        <div>Title Block</div>
        <div>Content Block</div>
    </div>

     <!-- add as many similar groups as you want -->

</div>

Option(s)

As of now there is only one option and that is only. By default this is set to false but if you set it true only one element will remain opened at-a-time, that means clicking on a 'title block' will close other opened 'content blocks' before opening its content.

You can set only option on this way:

$('.target').ruk({
    only: true
});

Callback

This plugin supports a callback and extends the ability to get the group sequence number and it's content state after each title click. This can be helpful for

  • Saving the states of the groups using cookies
  • Targetting to load ajax content in the content block when it gets opened.

etc.

You can set the callback this way:

$('.target').ruk({
    after: function (id, state) {
        // 'id' is the group serial number
        // 'state' is corresponding 'content block' state. If the content block is visible the state is 'true', else 'false'.
        console.log(id + " : " + state);
    }
});

Version History

1.0.0 : <2018.08.22>

  • Initial stable release