I have an INPUT element of the TEXT type and I want to perform an action whenever the INPUT's value does not equal a default value. How do I do this? I've looking into jQuery's "change" event handler, but it only works for SELECT elements. Anyhow, here is what I want to do..
Example:
<input type="text" name="test" value=\"Default..\" />
$('input[name=test]').FireWhenValueIsChangedThroughTyping() {
if (value!='Default..') { DoStuffHere(); }
}