Thibaultblf
Thibaultblf

Reputation: 21

The tag's input on boostrap don't want to be disabled

I use bootstrap, tags input. The tags input works nicely but the thing is, I want to disabled it, make it grey like a classic input but I can't find an easy way to do this. Do you have a solution ? I declare my input tag like this :

<textarea id="TagsArticle" class="tags" ></textarea>

Adding the word disable' or 'disable="true" doesn't work...

Upvotes: 0

Views: 239

Answers (2)

akhilless
akhilless

Reputation: 3219

try

<textarea id="TagsArticle" class="tags" disabled></textarea>

Upvotes: 1

rorofromfrance
rorofromfrance

Reputation: 1904

It should be disabled, not disable

<textarea id="TagsArticle" class="tags" disabled></textarea>

Upvotes: 0

Related Questions