Hello,
works fine for <input type="text" />, but can't get it working with for example <input type="search" />.
Replacing line 19
if ("text" != jQuery(this).attr("type") && !jQuery(this).is("textarea"))
with
if ("search" != jQuery(this).attr("type") && !jQuery(this).is("textarea"))
doesn't seem to work.
Ideas?