Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
2k views

Facebook Style AJAX Search

I've created a Facebook style ajax search for my site where as you type it will bring up the results in a nice list below your search. $("#s").keyup(function() { var searchbox = $(this).val(); ...
2
votes
1answer
22 views

using jquery to load a partial view with livesearch

ALright, hoping someone can help. I've got a page used to search for employees. The requirement is that the search pulls back results as you type. Mybe I'm going about this the completely wrong ...
2
votes
1answer
69 views

Logging live search misses

I have a live search on my help page that searches our help database and returns the relevant results. I figure that a good way to decide what needs more documentation would be to log searches that ...
1
vote
1answer
53 views

Most performant live search technique for mobile safari

I am building a mobile web application that targets webkit. I have a requirement to perform a live search (on keypress) against a database of ~5000 users. I've tried a number of different techniques: ...
1
vote
1answer
318 views

ActionScript - Live Searching And Updating DataProvider List?

i want to add live searching to a list whose data provider is a very large XML. for simplicity, let's assume my XML is just a list of the world's 180ish countries: package { //Imports import ...
0
votes
0answers
16 views

Highlight search term using jQuery livesearch?

Given the code here: http://jsfiddle.net/SZ5dr/ how can I highlight the search term? Basically I want it so that when a user starts typing into the input field, those results are highlighted. Here is ...
0
votes
3answers
46 views

jQuery live search when 4 numbers entered

Just wondering how do I do a live search only once the user has typed in 4 numbers into the input. It baisiclly needs to contact the php page using $ajax which I already have. I thought it might be ...
0
votes
2answers
121 views

jQuery live search. Check on every letters

I used jquery live search for live search. I have this html. A list with a lot of names from persons. <ul id="friends" class="friend-selection"> <li> <a href="#" title="Ik ...
0
votes
1answer
115 views

jQuery livesearch and rails

I'm trying to implement some live search function on my index view. I found this plugin http://www.mikemerritt.me/blog/livefilter-1-3-jquery-plugin/ but can't adapt to rails. I'm trying to reproduce ...
0
votes
1answer
123 views

Live search using AJAX: How to implement the server-portion

I'm building a simple case management systen for the agents on my company and I thought it would be nice to implement some form of search-suggestion-thingie, much like Google or (more recently) ...
0
votes
0answers
80 views

daves wordpress livesearch plugin - display all results on page load

I'm using daves wordpress livesearch plugin, which is brilliant: http://wordpress.org/extend/plugins/daves-wordpress-live-search/ I'd like to get all the results to be displayed when the page is ...
0
votes
1answer
76 views

ParseError: Token 'ATOM' required, u'AND' found on LiveSearch

adding the words AND, OR, NOT to a search query raises an error like this one in Plone 4.1: 2011-07-28 14:52:46 ERROR Zope.SiteErrorLog 1311882766.090.999612944712 ...
0
votes
1answer
289 views

Bing API Specific domain

I am currently using Bing API with Java and XML Interface. I downloaded just two java files on my computer ,try them and It works fine , the code I use is import java.io.IOException; import ...
0
votes
2answers
174 views

Javascript onfocus / onblur issues

So I am making a little searchbar that shows results underneath of it like such: <div id='searchWrapper'> <div id='Search'> <input id="inputSpn" type="input" value="" /> ...
0
votes
0answers
62 views

Refresh submitted AJAX livesearch

What's the best practice for refreshing the results of an AJAX livesearch? I.e. If I use the w3school (http://www.w3schools.com/php/php_ajax_livesearch.asp) guide to a live search, once the GET has ...
0
votes
2answers
462 views

jquery php live search

ive got working live search with ajax and php JQUERY: $("#search").keyup(function() { var search_input = $(this).val(); var dataString = 'keyword='+ search_input; ...
0
votes
1answer
429 views

jQuery Rails regain focus on live search input box

I'm pretty new to jQuery and was following a tutorial on how to make a live search bar. The live search bar works great, except that after every character entered, the ajax request to get the results ...
0
votes
1answer
140 views

jQuery livesearch not working when loading asynchronously

I have a livesearch and it uses an unordered list, like this: <input id="search"/> <ul id="list> <li>1</li> <li>2</li> </ul> Now I have the liveSearch ...
0
votes
1answer
897 views

jQuery + ajax livesearch

I am doing a mysql database search and retrieving some results via ajax livesearch using the example on w3schools and i want to manipulate those results (drag and drop them) but im having a problem ...
0
votes
1answer
463 views

Web Service Client Java

I generated java web service client from here --> http://api.search.live.net/search.wsdl.. I want to make search and listing the return values. How ı can show result ? my code is : import ...
0
votes
2answers
4k views

Help with a AJAX PHP and MYSQL Live Search!

i am trying to create a Ajax live search for my website. I currently can query the database for titles and display them under my search (See Fig 1.0) however i need to make them selectable so that ...
0
votes
2answers
400 views

PHP5 and Microsoft Live Search 2.0

I'm trying to use Live Search 2.0 but even a simple example doesn't seem to work. Microsoft only has example code for 1.1 and they're not giving out AppIDs for that version. Here's what I'm trying ...