Question

How do I add display:none to this form?

<%= form_tag(posts_path, :method => "get", id: "search-form", class: "nav-search-wrapper") do %>
    <%= text_field_tag :search, params[:search], placeholder: "Search" %>
    <%= submit_tag "Search", :name => nil %>
<% end %>
Was it helpful?

Solution

Use style: 'display: none;':

<%= form_tag(posts_path, :method => "get", id: "search-form", class: "nav-search-wrapper", 
    style: "display:none;") do %>
...
<% end %>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top