Hello
i have a problem with form send, this is the code :
onValidateSuccess : function()
{
var div = $('request_div');
var form = $('request_form');
form.removeEvents();
form.set('send',{
update:
'request_div',
onComplete:
function(response){div.set('html', response);}
});
MLD.set_waiting_message(div);
form.send();
}
this works well on firefox, opera and etc. but on internet explorer
when i submit the form i don't receive any post data from the form.
if i remove this part
form.set('send',{
update: 'request_div',
onComplete: function(response){div.set('html',
response);}
});
from the code, it works on IE too.
someone can help me???