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?
You’d have to use a local proxy page to pull in the url if it’s a cross-domain request, or use JSON.
For example, if I wanted to pull in
google.comI send it to a local/proxy?uri=http://google.comand that grabs the content, returns it to me.