function workprogress(){Ext.Ajax.request({
url: 'communication.php',
success: noWork,
failure: yesWork
});}
function noWork() {
infoWindow.hide();
}
function yesWork() {
infoWindow.show();
}
I want to echo the response text to the window. How you catch the response text which comes from the php file?
1 Answer