Opened 13 years ago
Closed 13 years ago
#5726 closed bug (invalid)
problems with jquery.ajax and https y chrome
Reported by: | leonsio97 | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | ajax | Version: | 1.3.2 |
Keywords: | Cc: | [email protected]… | |
Blocked by: | Blocking: |
Description
I have an error when y use jquery.ajax with a page that run in https protocol in Chrome. my code is:
function ObtenerUsuarioXnick(usuario_usuario) {
var rta = "";
jQuery.ajax({
url: '../Proxy.svc/GetString/Usuario/ObtenerUsuario?query=usuario_usuario=' + usuario_usuario, type: 'GET', dataType: "xml", async:false, success:function(xml)
{
alert("success"); rta = jQuery(xml).find("string").text();
},
error:function(e)
{
alert("error");
rta = e.responseText;
}
}); return rta;
}
with async = false in https in chrome i ever have errors. Somebody can help me with this problem?
This isn't a bug report (at least not yet), please ask for help on the jQuery group.