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 want to have a text value for a form like "search website.com..." but if the form has been submitted i want the query to appear- i dont know ruby idioms that well but i was think

<%= text_field_tag "q", params[:q] | "search website.com...." %>

is this correct?

share|improve this question

3 Answers

up vote 3 down vote accepted

That will work, but you should use || (logical OR operator) instead of | (bitwise OR).

share|improve this answer
+1 - Ah...can't believe I didn't catch that. – Topher Fangio Jan 11 '10 at 16:58

That should work pretty well. The only thing I might add is that you should use a bit of javascript to check if it is the "default" string of "search website.com..." and if so, when a user clicks or focuses on the text box, you should clear the default string so that they don't have to do it themselves. Again, this should only be done on the default string, not if the user enters one.

share|improve this answer
see im taking a html file into a template file and the text field is- <input type="text" id="q" value="Search website.com" onfocus="if (this.value=='Search website.com') this.value = ''" class="swap_value" /> – chris Jan 11 '10 at 16:50
@chris - That should work just fine. However, if you haven't checked out jQuery.com , you really should. – Topher Fangio Jan 11 '10 at 16:59

An alternative approach could be using the :placeholder instead. Something like this:

= text_field_tag :q, params[:q], :placeholder => "Search website.com &#8230;".html_safe

Side Note: .html_safe lets you use the html code for ellipses instead of using three dots

share|improve this answer

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.