Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to change my the color of my form field text when a specific word is typed in. How can I use an if else statement to make this work for multiple words?

Current: When 'something' is typed in the color of the text changes to red

 <%= text_field_tag :post, :post, :id => 'posts',
 :onKeyDown => "if (this.value == 'something') (this.style.color = 'red')" %>

What I want to do: (but is not working because I'm a noob at javascript syntax)

 <%= text_field_tag :post, :post, :id => 'posts',
 :onKeyDown => "if (this.value == 'something') (this.style.color = 'red') else (this.value == 'stuff')(this.style.color = 'blue'); "

Any ideas on how to make this work correctly? Thank you very much for your help!

Extra Credit: How can I do that but only change the color of that specific word? But no other words

share|improve this question

1 Answer

up vote 1 down vote accepted

Try

 <%= text_field_tag :post, :post, :id => 'posts',
 :onKeyDown => "if (this.value == 'something') (this.style.color = 'red') else if (this.value == 'stuff')(this.style.color = 'blue'); "
share|improve this answer
somehow this doesnt work, if i remove the 'else if' onwards it works for the red color though – ahuang7 Sep 4 '11 at 19:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.