Skip to content

Just another another (another) url slug creation plugin for jQuery.

License

Notifications You must be signed in to change notification settings

DrDeath72/jquery-slugify

 
 

Repository files navigation

Build Status

jQuery Slugify

Just another another (another) url slug creation plugin for jQuery.

Getting Started

You can install the plugin using Bower

bower install jquery-slugify

You can download the production version or the development version.

In your web page:

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

<input type ="text" value="" id="slug-source" /> <!-- The text to be slugged -->
<input type ="text" value="" id="slug-target" /> <!-- The processed text as slug -->

<script>
jQuery(function($) {
  $.slugify("Ätschi Bätschi"); // "aetschi-baetschi"
  $('#slug-target').slugify('#slug-source'); // Type as you slug
});
</script>

About

Just another another (another) url slug creation plugin for jQuery.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 95.3%
  • CSS 4.7%