Hi,
I am trying to use the jquery get statement:
$.get(urlAddress+".asmx", { question: quest },
function(data){
alert("Data Loaded: " + data);
});
I don't know how to specify the method and how to get data
The HTTP headers are giving a 200 message (Ok) but I'm not getting any data back.
Any help please?