Firefox not recognizing parameters sent by Ajax
I have an Ajax script which works fine in IE, Opera, etc, but not in FF 3.6. It appears the data sent is not recognized. My debug alert to display a simple variable sent is blank. In other browsers it displays fine. I'm developing on my PC so shouldn't have the cross domain issue, I don't think?
- Here is the code
- function ajaxRequest() {
- $.ajax({
type: "POST",
url: 'WTE_HTTP_Submit.cfm',
data: params,
error: function(e) { alert("Failure: " + e.statusText ); },
success: postResponse
});
}
return true;
}
- function postResponse(html){
alert(html.trim());
}
Any ideas?