[jQuery] Ajax Errors with Firefox 3.0.8 (latest release)

2009-04-01 Thread tallvanilla

Many of our websites users began reporting AJAX errors on all jQuery-
enabled pages of our website. The common factor among these users is
that all are using the latest update to Firefox: version 3.0.8. From
what I've gathered, it might only affect "get" requests, but I can't
be sure of that yet.

Has anyone else experienced this problem yet, or is this too new to
have been identified as a bug? Is it more likely a bug in Firefox than
jQuery?

Unfortunately, I have no links to post. This all occurs in a secure,
members-only area of our website.

JOSH


[jQuery] Ajax errors

2007-08-26 Thread c4st

I can't seem to figure out why this isn't working. request.php is
working just fine.

$(document).ready(function(){
$("input.search").keypress(function(){

$("select.make").removeAttr('disabled');
$("button.search").removeAttr('disabled');

});
$("select.make").each(function(i){
$(this).change(function(){
if($(this).val() > 0) {
$.ajax({
type: "POST",
url: "/request.php",
data: "action=model_list&make_id=" + 
$(this).val(),
dataType: "json",
success: function(json) {
$("select.model")[i].empty();
for(ii in json) {

$("select.model")[i].append('' + json[ii]['name'] + '');
}
},
error: function(object, msg) {
alert(msg);
},
complete: function() {

$("select.model")[i].removeAttr('disabled');
}
});
}

});

});
});

I get an alert box with "error"...