This should be easy to manipulate if you cannot find the exact plugin you are looking for. For example, this plugin has the following as the actual clearMessage event:
input.focus(clearMessage);
input.blur(insertMessage);
input.change(insertMessage);
What you could just change to say this:
input.keypress(clearMessage);
input.blur(insertMessage);
input.change(insertMessage);
source
share