BTW, it works when using the HttpRequest using the following code:

function search() {
 var xmlhttp= new XMLHttpRequest();
 xmlhttp.open("GET", "test_json.json",true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
alert(xmlhttp.responseText);
 var myjson = JSON.parse( xmlhttp.responseText );
alert( myjson.message );
 }
}
xmlhttp.send(null);

so the issue should be in ajax handling of QtWebkit,
I will drill down into Jquery to understand why it fails in order to narrow
down the issue.
_______________________________________________
webkit-qt mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-qt

Reply via email to