Questions tagged [search-box]

A search box or search field is a common GUI element used in computer programs

A search box or search field is a common GUI element used in computer programs, such as file managers or web browsers, and on web sites. A search box is usually a single-line text box with the dedicated function of accepting user input to be searched for in a database. Search boxes on web pages are usually used to allow users to enter a query to be submitted to a Web search engine server-side script, where an index database is queried for entries that contain one or more of the user's keywords.

Search boxes are commonly accompanied by a search button (sometimes indicated only by a magnifying glass symbol) to submit the search, although a search button may be omitted as the user may press the enter key to submit the search, or the search may be sent automatically to present the user with real-time results. Common Features

Depending on the particular implementation, a search box may be accompanied by a drop-down list to present the user with past searches or search suggestions. Search boxes may have other features to help the user, such as autocomplete, search suggestions, a spelling checker, etc. Search boxes are often also accompanied by drop-down menus or other input controls to allow the user to restrict the search or choose what type of content to search for.

Common Search bar

Common Search bar

Credit goes to Wikipedia

273 questions
0
votes
3 answers

Sliding searchbox with full page overlay effect

I would like implement on my own website this kind of search box (click on "cerca" in the top menu): http://www.solidstudio.it/#. How works this sliding horizontal effect on click to display the searchform combined with the fullpage overlay effect?…
0
votes
2 answers

SharePoint 2010: Move Default Search box to Footer

Without using the SharePoint Designer or Visual Studio, is there a way to move the Default Search box to Footer of a page or to a specific custom div tag? I have found CSS that will allow me to move it to the top of the page however it does not work…
0
votes
2 answers

Google Maps API Places Library SearchBox

I am attempting to add infowindows to the markers with PlaceDetails that are returned after a google searchbox search. When I click on the markers no infowindows open. I cannot figure out where I went wrong? var infowindow = new…
Rick
  • 61
  • 5
  • 12
0
votes
0 answers

php date search box query

I have an order page on oscommerce, with a search box that allows the user to filter results through the date of purchase. here is the html markup for showing the search box, it uses a jquery datepicker to select the date:
user180857
  • 329
  • 2
  • 3
  • 15
0
votes
1 answer

Jquery Autocomplete search box results show in HTML format

I am having a little issue with the jquery autocoomplete plugin on my site. I have a search box that queries against a database for the usernames of registered users. This works great but one aspect. When the user clicks on the user to finish the…
itgeek25
  • 203
  • 2
  • 7
  • 18
0
votes
3 answers

implementing autocomplete in my website

i am developing a website where i intend to provide the search feature. I am developing it in PHP/MYSQL and i have written the script to perform the search. I wish to provide autocomplete or suggested searches option in the search box as the user…
Anirudh Goel
  • 4,571
  • 19
  • 79
  • 109
0
votes
2 answers

Searchbox in Listview: always the same result

when i use the serachbox for my Listview, i get everytime the same result. For Example: Car Flower Hate Love Water When I typef or h or l etc. the result is Car. I worked with this example…
Laire
  • 1,290
  • 6
  • 22
  • 49
0
votes
3 answers
0
votes
3 answers

How do I create a customized search-box for my application?

How can I make a customized search-box for my android application? Something like this, for example : Or if it's hard, is it possible to use the Android SearchManager in local app?
Kermia
  • 4,171
  • 13
  • 64
  • 105
-1
votes
1 answer

How to apply a condition in JavaScript filter

I have a Script that is used to filter drop-down (Country code selection) options with live search. but the problem is I want to show a option named "No Data Found" when their is no exact match found from the HTML value. Currently my code removes…
Gupa Dutta
  • 67
  • 5
-1
votes
1 answer

Search Box(Filter) Google sheet

I want to create search box as bellow image.
-1
votes
1 answer

jquery add line with no results found

$(document).ready(function(){ $("#ltt").on("keyup", function() { var value = $(this).val().toLowerCase(); $("#ltt tr").filter(function() { $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) if (this[0]){ …
James
  • 132
  • 12
-1
votes
4 answers

Search a table made with JS with for() loop

I'm trying to set up a search bar that searches a table made by looping data brought from an API either by name or by email , but I can't find were I'm going wrong. The console shows me uncaught ReferenceError: sBar is not defined at…
Nyom
  • 114
  • 7
-1
votes
1 answer

Searching Algorithm using listbox

I am trying to make a search box/ bar by using access Database. i want the code to search for the record and then then remove/hide the record from listbox when i search for another record. My programs belows searches for the Record and displays it,…
SUNIL
  • 1
  • 1
  • 7
-1
votes
3 answers

how to style a search box

I am trying to style my search box and it will not work. Under .search-input I am trying to change the background color of the search box to green, and I am trying to make the search box longer. Does anyone see my error? The search box drops down…
user6738171
  • 1,009
  • 2
  • 15
  • 50