How to move the search button inside the search bar?

user4133294

I'm building a Rails app. How can I build a search bar that contains the search button inside it? An example would be the Stackoverflow search bar at the top of the page. Here's my search bar so far:

<div id= "searchbar">
  <%= form_tag things_path, :method => :get do %>
    <p>
      <%= text_field_tag :search, params[:search] %>
      <button class="btn" type="submit"><i class="thing-search">Go</i></button>
      <%#<div="Go"><%= submit_tag "Go", :name => nil </div> %>
    </p>
  <% end %>
</div>
MCBama

You might want to take a loot at Bootstrap Button Groups. They're essentially exactly what you're looking for and rolling bootstrap into a rails app is fairly simple. At the very least it will give you a good design to work off of.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to hide the done button and search bar in SafariViewController

From Dev

Search Bar return Button

From Dev

Android search button and search field in action bar

From Dev

Search bar expand from Search button on iphone

From Dev

Android search button and search field in action bar

From Dev

How to move dataTables search box inside Bootstrap container? JSFiddle included

From Dev

Search Bar - Cancel Button in Navigation Bar

From Dev

Search Bar - Cancel Button in Navigation Bar

From Dev

How to I conceal the search bar and make it appear when a button is pressed

From Dev

How can i add progress bar on search button click

From Dev

Make Cancel button in search bar active after search button tapped

From Dev

How to show/hide a search bar inside a navigation bar (iOS 7) as in Apple's Calendar app?

From Dev

How to show/hide a search bar inside a navigation bar (iOS 7) as in Apple's Calendar app?

From Dev

How to search inside PDFs with Windows Search?

From Dev

Bootstrap 5 airbnb clone : Search bar as button

From Dev

Showing search field/button on the menu bar

From Dev

Search and move

From Java

how to display a search bar with SwiftUI

From Dev

HTML: How to create search bar?

From Dev

How to hide a temporary search bar?

From Dev

How to add a Search to an action bar?

From Dev

how to make a search bar reactjs

From Dev

How to add search into action bar

From Dev

how to create a live search bar?

From Dev

how to add a vertical line to the right to the button such that the line should appear in between the search bar and that button

From Dev

How to add a search bar to the navigation bar

From Dev

Search in RadComboBox (inside RadGrid) on asp button click

From Dev

How to search for files inside an archive?

From Dev

How to search inside HDFS files

Related Related

  1. 1

    How to hide the done button and search bar in SafariViewController

  2. 2

    Search Bar return Button

  3. 3

    Android search button and search field in action bar

  4. 4

    Search bar expand from Search button on iphone

  5. 5

    Android search button and search field in action bar

  6. 6

    How to move dataTables search box inside Bootstrap container? JSFiddle included

  7. 7

    Search Bar - Cancel Button in Navigation Bar

  8. 8

    Search Bar - Cancel Button in Navigation Bar

  9. 9

    How to I conceal the search bar and make it appear when a button is pressed

  10. 10

    How can i add progress bar on search button click

  11. 11

    Make Cancel button in search bar active after search button tapped

  12. 12

    How to show/hide a search bar inside a navigation bar (iOS 7) as in Apple's Calendar app?

  13. 13

    How to show/hide a search bar inside a navigation bar (iOS 7) as in Apple's Calendar app?

  14. 14

    How to search inside PDFs with Windows Search?

  15. 15

    Bootstrap 5 airbnb clone : Search bar as button

  16. 16

    Showing search field/button on the menu bar

  17. 17

    Search and move

  18. 18

    how to display a search bar with SwiftUI

  19. 19

    HTML: How to create search bar?

  20. 20

    How to hide a temporary search bar?

  21. 21

    How to add a Search to an action bar?

  22. 22

    how to make a search bar reactjs

  23. 23

    How to add search into action bar

  24. 24

    how to create a live search bar?

  25. 25

    how to add a vertical line to the right to the button such that the line should appear in between the search bar and that button

  26. 26

    How to add a search bar to the navigation bar

  27. 27

    Search in RadComboBox (inside RadGrid) on asp button click

  28. 28

    How to search for files inside an archive?

  29. 29

    How to search inside HDFS files

HotTag

Archive