Hi im trying to implement a simple search form in my navbar, it works, but there is a problem with it
if im in my show.html.erb view and use the search form i wont get redirected to my index.html.erb. here is my code
<%= form_tag("/products", method: :get) do %>
<%= text_field_tag :query, params[:query], {:class =>"search-query", :placeholder=>"Search"} %>
<% end %>
i want this form to redirect me completley to "products#index", thanks in advance
EDIT:
I figured it out...
i had this
<form class="navbar-search pull-left">
<%= form_tag({:controller => "products", :action => "index"}, method: :get) do %>
<%= text_field_tag :query, params[:query], {:class =>"search-query", :placeholder=>"Search"} %>
<% end %>
</form>
i had two forms the HTML one and the helper method one.
Thanks anyways