Printable Version of Topic

Click here to view this topic in its original format

HTMLHelp Forums _ Markup (HTML, XHTML, XML) _ HTML input

Posted by: bgman Nov 13 2018, 05:00 PM

I have a form used to collect info from a web site user in this manner:
<label>What is your mother's maiden name? <input id = "txtMaiden" name = "txtMaiden" type = "text" value = "" size="25" maxlength = "25" /></label><br />

I would like to have the text be visible, just as typed by the user, when the user is in that field. But when the user selects the next field on my form, I would like the field to show only asterisks or spaces as if it were a password. The text should only be visible when it is being entered or modified.

Is this possible?

Thanks in advance for any insight or suggestions!!

Bob.

Posted by: Christian J Nov 14 2018, 06:47 AM

You might use javascript onblur and onfocus to change its TYPE atribute value between "text" to "password":

CODE
<input type="text" onblur="this.type='password';" onfocus="this.type='text';">

Posted by: aresourcepool Jan 14 2019, 08:38 AM

This can be solved using the following JQuery:
<label for="add_fields_placeholder">Placeholder: </label>
<select name="add_fields_placeholder" id="add_fields_placeholder">
<option value="50">50</option>
<option value="100">100</option>
<option value="200">200</option>
<option value="500">500</option>
<option value="1000">1000</option>
<option value="Other">Other</option>
</select>
<div id="add_fields_placeholderValue">
Price:<input type="text" name="add_fields_placeholderValue" id="add_fields_placeholderValueInput">
</div>

<script>
$(document).ready(function(){
$("#add_fields_placeholder").change(function(){
if($(this).val() == "Other") {
$("#add_fields_placeholderValue").show();
}
else {
$("#add_fields_placeholderValue").hide();
}
});
});
</script>


Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)