jQuery slugify plugin

1
2
3
4
5
6
7
8
jQuery.fn.slugify = function(obj) {
    jQuery(this).data('obj', jQuery(obj));
    jQuery(this).keyup(function() {
        var obj = jQuery(this).data('obj');
        var slug = jQuery(this).val().replace(/\s+/g,'-').replace(/[^a-zA-Z0-9\-]/g,'').toLowerCase();
        obj.val(slug);
    });
}

Comments

(Forgotten your password?)

You may use Markdown syntax here, but raw HTML will be removed.