You are viewing limited content. For full access, please sign in.

Question

Question

Hide suggestion for input box

asked on June 2, 2016 Show version history

I have a form where the user will have to input text into a single line input box.  The form currently shows suggested text from previous form submissions when a user starts typing in the input box.  Is there a way to hide the suggested text?

 

 

0 0

Answer

SELECTED ANSWER
replied on June 2, 2016 Show version history

Dane,

 

Put this in your javascript section of the Form:

 

$(document).ready(function (){
$('input').attr('autocomplete','off');
}

 

This will affect all input boxes however, so if you only want to target certain ones, you will need to list them.

 

 

Rick
 

1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.