telexper
telexper

Reputation: 2441

how to limit tag-it input in jquery

How will I be able to limit the number of inputs a user can input from a Tag-It feature in jquery? I am currently using this plugin, but I would only want the user to be able to input 3 types of tag in an input box similar to our tags here at stack that limits the user to a maximum of 5 tags per question.

Upvotes: 1

Views: 1238

Answers (1)

Felix
Felix

Reputation: 38102

You can use tagLimit options and set it to 5

$("#myTags").tagit({
    tagLimit: 5
});

You can view more options from their docs here

Upvotes: 4

Related Questions