I have created a form with html5 but I need to hide the value inserted in a field of the form. That's possible? If possible, how is it done?
The code is basically this:
<form><input type="text" value=""><input type="submit" value="Enviar"></form>
I have created a form with html5 but I need to hide the value inserted in a field of the form. That's possible? If possible, how is it done?
The code is basically this:
<form><input type="text" value=""><input type="submit" value="Enviar"></form>
You can support CSS with
color: transparent
.hidden-text-input {
color: transparent;
}
<input class='hidden-text-input' value='abc'>