All Projects → idlesign → jquery-alphaindex

idlesign / jquery-alphaindex

Licence: BSD-3-Clause license
jQuery plugin to create alphabetical indexes for your lists

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to jquery-alphaindex

volx-recyclerview-fast-scroll
An easy to use implementation for fast scroll recyclerview
Stars: ✭ 34 (+183.33%)
Mutual labels:  alphabet, letters, alphabetical-indexes
homoglyphs
Homoglyphs: get similar letters, convert to ASCII, detect possible languages and UTF-8 group.
Stars: ✭ 70 (+483.33%)
Mutual labels:  alphabet, letters
CleanUI
Android library to create beautiful, clean and minimal UIs.
Stars: ✭ 19 (+58.33%)
Mutual labels:  widgets
jquery-imageuploader-js
A JQuery plugin that provides an interface for managing a set of files to upload. Files will have a thumbnail preview and can be removed before the upload step.
Stars: ✭ 18 (+50%)
Mutual labels:  jquery-plugin
urdu-characters
📄 Complete collection of Urdu language characters & unicode code points.
Stars: ✭ 24 (+100%)
Mutual labels:  letters
index-autoload
Adds an index to the autoload in wp_options table and verifies it exists on a daily basis (using WP Cron), resulting in a more efficient database.
Stars: ✭ 18 (+50%)
Mutual labels:  index
widgets
💸 Web3 Payments with any token. DePay simplifies and improves Web3 Payments with the power of DeFi. Accept any token with on-the-fly conversion with state-of-the-art widgets.
Stars: ✭ 32 (+166.67%)
Mutual labels:  widgets
view
Yii view rendering library
Stars: ✭ 42 (+250%)
Mutual labels:  widgets
tile38
Real-time Geospatial and Geofencing
Stars: ✭ 8,117 (+67541.67%)
Mutual labels:  index
KeyboardDelimiter
jQuery Plugin for delimite pressed key on keyboard
Stars: ✭ 14 (+16.67%)
Mutual labels:  jquery-plugin
selectr
✅ The coolest jQuery select plugin you've never seen
Stars: ✭ 19 (+58.33%)
Mutual labels:  jquery-plugin
provejs-jquery
An event based jQuery plugin for client-side validation of html forms.
Stars: ✭ 76 (+533.33%)
Mutual labels:  jquery-plugin
instastory.js
This is a jQuery plugin to make it easy to get a feed from instagram. No need of access tokens and other stuff, Only thing needed is jQuery.
Stars: ✭ 36 (+200%)
Mutual labels:  jquery-plugin
cmv-contrib-widgets
User contributed widgets for CMV
Stars: ✭ 36 (+200%)
Mutual labels:  widgets
jquery.niceform
The jQuery plugin for validation and post form data to server
Stars: ✭ 16 (+33.33%)
Mutual labels:  jquery-plugin
charles-rest
Github chatbot and web-content indexer/searcher
Stars: ✭ 24 (+100%)
Mutual labels:  index
python-sonic-client
sonic search backend client in python
Stars: ✭ 45 (+275%)
Mutual labels:  index
markdown-index
Generate a global index for multiple markdown files recursively
Stars: ✭ 15 (+25%)
Mutual labels:  index
jq-ajax-progress
jQuery plugin that adds support of `progress` promise
Stars: ✭ 59 (+391.67%)
Mutual labels:  jquery-plugin
lazeemenu
Multi-level sidebar menu - JQuery plugin
Stars: ✭ 40 (+233.33%)
Mutual labels:  jquery-plugin

jquery-alphaindex

https://github.com/idlesign/jquery-alphaindex

npm

Description

jQuery plugin to create alphabetical indexes for your lists.

An alphabetical index may help your users to navigate through a long list of items.

Demo

Usage

  1. Include jQuery.

  2. Include jquery.alphaindex.js or jquery.alphaindex.min.js.

  3. Make a list:

    <ul id="my-list">
        <li>Joker James</li>
        <li>Anderson Ann</li>
        <li>Johnson John</li>
    </ul>
  1. Initialize an index:
    var myIndex = $('#my-list').makeAlphaIndex(),
        $indexBar = myIndex.alphaIndexBar;  // bar object, if you need it

    myIndex.alphaIndexToggle('a');  // toggle A indexed
    myIndex.alphaIndexToggle(true);  // show all
    myIndex.alphaIndexToggle(false);  // hide all
    myIndex.alphaIndexToggle();  // toggle all

Options

  • showItemsCount - Show number of items over each letter in index bar. Default: true.
  • activateFirstIndex - Show list item belonging to the first letter in index bar after load. Default: true.

Styling

  • List is marked with .alpha-index-list.
  • Index bar is marked with .alpha-index-bar.
  • Index bar current item is marked with .current.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].