Search code examples
javascripthtmltagsbootstrap-modalbootstrap-tags-input

How to use tags input of bootstrap with textarea tag (data-role="tagsinput")


 <textarea id="Box" class="tags form-control" placeholder="X Axis values"></textarea>

i want show user selected options in text box area in tag wise with remove option.

How to use tags-input of bootstrap with textarea? I have applied data-role="tagsinput". But tags-input is not working. as we know, we have the same issue in Stackoverflow. but for that no solution.

need solution/hint for this How to use tags input of bootstrap with textarea


Solution

  • Bootstrap tags-input does not work with textarea. Support is not provided.

    However you can use it with input type="text" and apply the following css to make it work like textarea.

    .bootstrap-tagsinput {
    min-height: 100px;
    }
    

    See this link