$.get('http://localhost/a.bb?cmd=<abc></abc>', function(data) {
alert('result comes back.');
$('.result').html(data);
});
);
Above is the code I want send to server, why jquery send OPTION for me? I want GET method.
Thanks.
|
|
jQuery/webbrowser will send a HTTP This all is in the name of Same Origin Policy. |
|||
|
|
|
this probably coming from your browser, or the way you format your get request it my be safer to pass the data as
|
|||
|
|