On 8/26/07, Erik Beeson <[EMAIL PROTECTED]> wrote: > The reason this is happening to you when you use ajax is because when > you pass a String as the "data" parameter, it is assumed that it's > already escaped. When you don't use ajax, the browser takes care of > escaping the + for you (it is escaped as %2B). To fix your problem, > you need to change line 9 and wrap this.value in > encodeURIComponent(this.value).
Thanks. That did it. Chris.