How can I remove the “No file chosen” tooltip from a file input in Chrome?

The default tooltip can be edited by using the title attribute

<input type="file" title="your text" />

But if you try to remove this tooltip

<input type="file" title=""/>

This won’t work. Here is my little trick to work this, try title with a space. It will work.:)

<input type="file" title=" "/>

Leave a Comment