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.

friendly url


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>

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.

SEO Friendly URL

This is a jQuery plugin that makes your titles or url's SEO friendly, suitable for use as hyperlinks, in CMS, blog or etc.

The "friendurl" method takes 1 or 2 arguments:

  • id - The id of container where returned value will be placed.
  • divider - (optional) The character used for separation of words into the URL. Default value is '-'