Why is Chrome showing a "Please Fill Out this Field" tooltip on empty fields? Why is Chrome showing a "Please Fill Out this Field" tooltip on empty fields? google-chrome google-chrome

Why is Chrome showing a "Please Fill Out this Field" tooltip on empty fields?


Are you using the HTML5 required attribute?

That will cause Chrome 10 to display a balloon prompting the user to fill out the field.


Put novalidate="novalidate" on <form> tag.

<form novalidate="novalidate">...</form>

In XHTML, attribute minimization is forbidden, and the novalidate attribute must be defined as <form novalidate="novalidate">.

http://www.w3schools.com/tags/att_form_novalidate.asp