How do I make an invisible text box and select it?
Erratic 'invisible' text box in Word
Invisible text boxes
textbox - creating invisible text fields in html? - Stack Overflow
Hi SharonRoffey,
As per you document, I figured it out, the Text box is hidden inside "Artwork details" heading when I collapse/Expand it will show up Text box and I deleted Text box as per your requirement. See image below for your reference:
I just send you corrected file via PM, please access and get you Word file.
I appreciate your understanding and stay safe!!
Best Regards
Waqas Muhammad
Thank you, Waqas Muhammad!
So, expand/collapse. That's one thing I didn't try and one great lesson.
I really appreciate your fix.
Best,
Sharon
Readonly:
<INPUT TYPE="text" NAME="firstbox" readonly="readonly">
Disable:
<INPUT TYPE="text" NAME="firstbox" disabled="disabled">
Invisible:
<INPUT TYPE="text" NAME="firstbox" type="hidden">
UPDATE
READONLY and DISABLED both remove the functionality of the input field, but to different degrees. READONLY locks the field: the user cannot change the value. DISABLED does the same thing but takes it further: the user cannot use the field in any way, not to highlight the text for copying, not to select the checkbox, not to submit the form. In fact, a disabled field is not even sent if the form is submitted.
Readonly :
<INPUT TYPE="text" NAME="firstbox" readonly>
Invisible
<INPUT TYPE="text" NAME="firstbox" style="display: none">
