
Solved
Protecting displayed text
I've been asked if we can carry forward responses to a second screen where we "re-ask" information. Example: What is your address?
If a respondent provides some of the info, we would ask again, differently: ......can you provide a cross street if you can't remember the exact address. On the second screen, I have filled in the information provided from the first (see screen shot)
QUESTION: Is there a way to protect their answers on the second screen so that they cannot edit them on the second screen? (right now, based on the screen shot, they can).
!

Best answer by TomG
> @Terri_Z said:
> if I pipe in text into a text form response, is there a way to protect it? So it would just be there for reference? Client doesn't want it in the form description, but in the text box. Any help would be appreciated!
You can use JS to make an input field readonly. Something like:
```
jQuery("#"+this.questionId+" .InputText").each(function() {
var input = jQuery(this);
if(input.val().length > 0) input.prop("readonly", true);
});
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
