+ 2
Help me with this?
how to hide this <input type="text" />
5 Respostas
+ 3
ah or you mean this
<input type="hidden" value="">
+ 3
if i understand you right you can do it with css
input {
display: none;
}
+ 3
you can use css inside html or direct in the element like this
<input type="text" style="display: none;" />
+ 2
<input type="text" hidden>
+ 1
not css inside the html code