Im using bootstrap tags input inside a modal that i display after ajax call.
Now i want to add class "form-control" to the generated input tag.
I tried like this :
$(".bootstrap-tagsinput > input").addClass('form-control');
but it dosent work for me.
Here is the input generated :
<div class="bootstrap-tagsinput">
<input type="text" placeholder="">
</div>
Any ideas please ?
You don't need
>symbolReference:
Descendant combinator
Child combinator