When changing background color of tt-input ta-head does not display tt-hint
1 answer
background-color: transparen
was set as inline style with javascript. You have to overwrite it using !important
.
for <input class="typeahead" type="text" placeholder="States of USA">
you should use:
.typeahead.tt-input {
background-color: black !important;
}
Also see: https://github.com/twitter/typeahead.js/issues/677
+2
source to share