Reputation: 21
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
Reputation: 3219
try
<textarea id="TagsArticle" class="tags" disabled></textarea>
Upvotes: 1
Reputation: 1904
It should be disabled
, not disable
<textarea id="TagsArticle" class="tags" disabled></textarea>
Upvotes: 0