Hey guys,
I've started to update existing applications with some ajax stuff using Prototype... it's been fine working in IE and Firefox - but just recently IE has started acting up a little.
Here's some basic coding I'm using..
Code:
var url = 'files/query_something.php';
var pars = Form.serialize($('form_data'));
var success = function(t){ alert("all ok"); }
var error = function(t) { alert("ERROR"); }
var myAjax = new Ajax.Request(url, {method: 'post', parameters: pars, onFailure: error, onSuccess:success });
it all works 100% a-ok in firefox, but Internet explorer is hit and miss! It works sometimes, then othertimes just submits and nothing comes back.
any ideas what I can do??
Maybe add some debugging... ? has anyone else had this problem?!