User:Hao2lian/Keyword search character encodingFrom MozillaZine Knowledge BaseIf you have a Google keyword, and you use it to search for something such as "C++," it won't work because the plus sign is a special character in URLs. So Google will only search for "C". [edit] The hackjavascript:document.location = "http://www.google.com/search?q=" + encodeURIComponent('%s'); [edit] Disadvantages of said hack
|