Hello,
I am using :
function ajax(u,s,t) {
jQuery.ajax({type: "POST", url: u, data: query, success: function(msg) { if(t==':eval') eval(msg); else document.getElementById(t).innerHTML=msg; } });
}
This works fine with FF but with IE it doesn't work is there somthing wrong I did?
Thanks in advance.