Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Fix URL autocomplete when using Privoxy' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Fix URL autocomplete when using Privoxy
Authored by: matsur on Jul 15, '05 12:28:01PM
Even better thanthe current function IMO is what Firefox does. It takes you the the result of Google's "I'm Feeling Lucky" when you enter an ambiguous term in the location bar. to accomplish this with the script, I'm pretty sure all you have to do is use this code block instead of the one above:

<!-- Privoxy Autocomplete workaround (begin) -->
<script type="text/javascript">;
var host="@host@"
var pos=host.indexOf("www")
if (pos==-1)
{
window.location="http://www.google.com/search?q=@host@&btnI=I'm+Feeling+Lucky"
}
</script>;
<!-- Privoxy Autocomplete workaround (end) -->;


[ Reply to This | # ]