I want to have a script that tests if an input contains a question mark, and if it does, changes some css. How can I do this?
|
feedback
|
|
Using
Not using jQuery:
UPDATE : Validating onKeyDown()
| |||||||||||
feedback
|
|
Validating with keydown() works, however the keydown event is firing before the character is actually entered in the textbox. Therefore once you put in a '?', you won't get the color change until the next key is pressed, firing the keydown(). If you change it to use keyup() it will fire right after the '?' is let go, changing the color immediately after it has been typed. You can test this out by alerting the value like Jesse suggested, the first letter you type in the text box will actually show an empty alert. Changing it to keyup() and using the alert test, you will see what was just typed in the textbox. | |||
|
feedback
|