Hi Guys, when i am filling the form and if a required field is empty i get a message “Please fill out this field” i don’t want this tool tip to show, how can i hide this?
This is not the solution, of course i know if i disable “Required” it won’t show … i don’t want it to be display in either situation “Required or Not Required”.
Ok, now I understand your question.
The message is just a standard HTML form validation message. So if you do not want to display this message at all (even if the input is required), you need a custom <form>
with the novalidate
attribute, because this cannot be set in Sitejet now.
Like this for example:
<form action="" method="post" novalidate>
...
</form>
If you rather want just to change the standard message then see here.
2 Likes