> I have an Ajax function I'm using to test right now. When the function > is called (upon a click), it runs the function, but displays the > "Error, please try again" message. In Firebug, it looks like the > function is returning the correct msg. I was using 1.0.2 (I think) > where it worked, minus the replaceWith function, and then I upgraded > to 1.1.2 and now it's showing the error message.
There may be an error in your success function. The try/catch in 1.1.2 was too broad; as a result if you had an error of some kind in the success function then it would be thrown and caught inside $.ajax, which would call the error function. Take the replaceWith out and see what alerts. (I didn't think replaceWith was in the core in 1.1.2 ...)