vote up 0 vote down star
1

This question is kind-of crappy because I try to get around some limitations:

Current JS sends an ajax query with the following code

jQuery('#searchbox').suggest('/?live=1');

What the server get is the following query string:

?live=1&q=searchstring

Problem: The server expects the query string to be preceded with 's=' not 'q='

I have to use the existing scripts so what I'm trying to so is find a way to change 'q=' to 's=' in javascript, without altering the exisiting suggest plugin or the php search script.

Thanks.

flag

2  
Is this a plugin you're using? Can you link to it? – inkedmn Sep 21 at 20:25
This is the existing plugin: core.trac.wordpress.org/browser/trunk/… – yoavf Sep 21 at 20:31

1 Answer

vote up 1 vote down check

The only way you will do that is by modifying the plugin, if you want to avoid changing the script forever and need this only for one page, override the function temporarily.

$.suggest.suggest = function() {
	var q = $.trim($input.val());
	if (q.length >= options.minchars) {
		cached = checkCache(q);
		if (cached) {
			displayItems(cached['items']);
		} else {
                //This is the line we r changing
		        $.get(options.source, {s: q}, function(txt) {
				$results.hide();
				var items = parseTxt(txt, q);
				displayItems(items);
				addToCache(q, items, txt.length);
			});
		}
	} else {
		$results.hide();
	}
}
link|flag
@dmitiri - doesn't seem to have any effect. How can you know which function take precedence ? – yoavf Sep 21 at 21:01
Let me double check their code and get back to you. – Dmitri Farkov Sep 22 at 12:51
1  
As long as you put the code snippet provided AFTER the library loads it should work. Encapsulate the code snippet in $(function(){ SNIPPIT HERE }) to make sure it runs after all external resources are loaded. – Dmitri Farkov Sep 22 at 12:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.