Firefox not recognizing parameters sent by Ajax

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?

  1. Here is the code
  2. function ajaxRequest() {
  3.       $.ajax({
            type: "POST",
             url: 'WTE_HTTP_Submit.cfm',
             data: params,
             error: function(e) { alert("Failure: " + e.statusText ); },
             success: postResponse
           });
      }
        
        return true;
    }









  4. function postResponse(html){
        alert(html.trim());
    }

Any ideas?