I am not able to see the complete query parameter in chrome dev tools in query string contains “=”.
It shows only till “=” and truncates there after.
Firebug shows it properly.
Please find the screenshots from firebug and chrome devtools for the ajax snippet shown here.
var qstring = "Hello=Hai"; $.ajax({ type: 'POST' , url: "/cgi-bin/printenv.pl" , data: "query=" + qstring , dataType: 'xml' , timeout: 10000 , success: function(jQuerySuccessData){ } });


Is there any workaround available for this?
Thanks,
Naga Kiran
You need to urlencode the query string as
=is a reserved character. The easiest way to do this would be theescapefunction in javascript. Make sure you urldecode on the other side as well.