views:

32

answers:

1

I had a really problem with Internet Explorer in all version i have a code in AJAX using jQuery, works perfect in all the others browsers and the propouse it's return an alert with the message "Bienvenido", but doesn't works with IE. Here i provide the code and the page in where you can try with the code and see.

function chargeFnc(mdlnm, btnm, scrnm, args){
    $.post(document.location, {md:mdlnm, bt: btnm, scr: scrnm},
           function(data){
                alert(1);
                $('#header_hd').append(data);
                $('#header_hd').load("#"+args[0], function(){
                    execfnc(scrnm, args);
                });
           });
}

The web page it's www.hidura.webfactional.com

A: 

Not sure if this will help, but your JSON notation should be:

{'md':mdlnm, 'bt': btnm, 'scr': scrnm}

Also, a little more complete code would be helpful since you don't show what the execfnc() does.

ryanulit
Thanks for the answer sorry i couldn't saw it because gmail put the mail in the junk i change the method i will use XML to send the data to the server. But thanks equal
hidura