I am trying to use Bootstrap 3 with Bootstrap Input and typeahead tags, but it does not show the tags inside the input.
Hard to explain ... Better to see in jsfiddle: https://jsfiddle.net/claudiosw/5cww4fcg/3/
I tried using typeahead.js, but the result was the same.
Here is the code:
<input type="text" class="form-control" rows="3" value="Test1,Test2" data-role="tagsinput" /> <script> $(document).ready(function() { $('input').tagsinput({ typeahead: { source: ['Amsterdam', 'Washington', 'Sydney', 'Beijing', 'Cairo'] } }); }); </script>
Thanks in advance!
twitter-bootstrap-3 bootstrap-tags-input
Claudio shigueo watanabe
source share