[jQuery] Simple jQuery AJAX, going crazy.
I have this AJAX request:
$(function() {
$.ajax({ type: "GET", url: "xml.php", dataType: "xml",
success: function(xml){
alert('success');
}, error: function(){
alert('error');
}});
});
Firebug says it succeeds, but there aren't any alerts, it neither
succeeds nor fails? Can anyone shed some light on this?
P.S. I've posted about the same message fifteen minutes ago, it just
doesn't seem to show up..