[jQuery] Re: ajax post variable error in safari/chrome

2008-11-27 Thread pedalpete
figured this one out a while ago, but forgot to update it (though it took forever to debug too). Turns out it wasn't really webkit (though the other websites didn't have a problem), but spaces in the text were being represented by /\W\g, and only webkit did not strip this out when posting the data

[jQuery] Re: ajax post variable error in safari/chrome

2008-11-27 Thread rodrigopolo
WebKit sucks parsing Dynamic XML, I had this problem and I found it was because Gzip... The SOLUTION in PHP, add the fallowing code in your PHP code: header('Content-Type: application/xml'); ob_start('ob_gzhandler'); another problem reasons could be that your dynamic XML is not a real XML, my

[jQuery] Re: ajax post variable error in safari/chrome

2008-11-25 Thread RodrigoPoloDOTcom
WebKit sucks parsing Dynamic XML, I had this problem and I found it was because Gzip... The SOLUTION in PHP, add the fallowing code in your PHP code: header('Content-Type: application/xml'); ob_start('ob_gzhandler'); another problem reasons could be that your dynamic XML is not a real XML, my a