JQuery Form plugin
It works in FireFox but in Google Chrome my request keeps pending and I don't get any respone.
It is just a Netwebpage procedure that returns an XML response with "do sendpacket".
The XML is correct, as I can see in FireFox.
I tried async: false and async: true . . . still not working in Chrome.
$("#form1").ajaxForm({
url: 'doregistreren',
type: 'get',
data: '{}',
async: false,
target: '#message1',
dataType: 'xml',
replaceTarget: false,
success: showResponse,
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert('status:' + XMLHttpRequest.status);
alert('responseText:' + XMLHttpRequest.responseText);
}
});
regards
Patrick De Laet