this is my form:
<%= form_tag('/search/results', :method => "get") do %>
<%= label_tag(:q, "Search for:") %>
<%= text_field_tag(:q) %>
<%= submit_tag("Search") %>
<% end %>
i want when i start typing in the text field the site wil refresh.
how can i do it?
If you mean to just add extra HTML attributes to the element generated by
text_field_tag, you can pass them as a hash.Hash arguments other than
:disabled,:size,:maxlength,:placeholderare treated just as passthrough HTML attributes onto the generatedinputelement