Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

slug


slugIt

Generate url slug for a form text field on another text field or on any dom element as you type.

<form>
    <input type="text" id="slugme"/>
    <input type="text" id="slug"/>
</form>

<script>
    $(document).ready(function(){
        $('#slugme').slugIt();
    });
</script>

syncTranslit

Plugin for generating transliterated slugs (Cyrillic symbols: Ukrainian or Russian).
It synchronizes two fields on the form. Data from field-source are beign transliterated to destination field.

jQuery Plugin stringToSlug

The stringToSlug converts any string to SLUG in all Languages.

The plugin removes special characters, converts the string to lowercase and defines a space character.

Transforming a string into a url-friendly permalink.
You can use the plugin to display a view in html elements or form inputs.

It is the only plugin that removes the stress of words, exchanging letters marked by unaccented letters.

You can define which character space (hiphen or underscore for example) use.

jQuery SimpleSlug

A simple plugin which helps you to generate a slug.
The typical usage is:

$('input#slug').simpleslug({
source: 'input#title',
preview: 'span#preview',
replacement: '-'
});

The two parameters 'preview' and 'replacement' are optional.

Download at http://dingyu.me/blog/files/jquery-simpleslug-plugin/jquery.simpleslug.0.1.js

Simple Slug Generator

Create url friendly slugs from a given input box. Handles multiple inputs to slugs on one page.