Is there a way to disable tooltips in forms?
Is there a way to disable tooltips in forms? The prepopulated ones do not add value in my forms and I'd rather not have to delete each one individually. Thanks!!
Is there a way to disable tooltips in forms? The prepopulated ones do not add value in my forms and I'd rather not have to delete each one individually. Thanks!!
There are no pre-populated tooltips when you add a form field, unless you use the fields detection wizard.
Either way, You can remove all of them at once by running this code:
for (var i=0; i<this.numFields; i++) {
var f = this.getField(this.getNthFieldName(i));
if (f==null) continue;
f.userName = "";
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.