how can i remove the focusin dropdown that you see in this image?
by css or javascript? How?
thanks.
We use <select> and <option> elements to create a drop-down list and use disabled attribute in <select> element to disable the drop-down list element.
Answer: Use CSS outline property This is the default behavior of chrome, however if you don't like it you can easily remove this by setting their outline property to none .
Use autocomplete="off"
:
<input type="text" autocomplete="off">
However, this is a non-standard attribute for HTML version < 5. In HTML5 you can freely use this attribute, see the reference:
If that's input
of type text
then you can do it by specifying attribute autocomplete
:
<input type="text" autocomplete="off"/>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With