I have the same problem. Let the author forget to test after some revision. Open bootstrap-tagsinput.js, and in the last line you will see the following code:
$(function() { $("input[data-role=tagsinput], select[multiple][data-role=tagsinput]").tagsinput(); });
As you can see, the tagsinput()
function is called in this js code. Therefore, including your call to tagsinput()
in your code, there are 2 calls to tagsinput()
.
As a result, on line 357, where the tagsinput()
registration functions as a jquery plugin, initialization failed.
To solve this problem, comment on the top code. (But maybe you can use some functions, but not importan
In any case, you need to enable bootstrap-tagsinput.css
.
source share