Read-only or disabled the jquery tags

jquery, jquery-plugins, tags

Solution

try this:

$('#tags').tagsInput({
        'interactive':false
        });

if you want to disable the remove 'X'. use this below.

$('.tagsinput').find('a').remove();

Problem

I am using this http://xoxco.com/projects/code/tagsinput/ for my tags input. But anyone know how to set the div of tags to be read-only mode or disable it?

Original source