IE is not firing ajax call in jquery

Posted by VinTem on Stack Overflow See other posts from Stack Overflow or by VinTem
Published on 2010-03-23T21:33:49Z Indexed on 2010/03/23 21:43 UTC
Read the original article Hit count: 242

Filed under:
|

I have this code that it is working on firefox and chrome, but in IE8/IE7 it's not working. The server is not been reached ever.

$("#adicionarItem").click(function(){
    $.ajax({
        type: 'GET',
        url: $("#formAdicionaItem").attr("action"),
        data: $("#formAdicionaItem").serialize(),
        success: function(result){
            //do something
            }
        }
    });
});

Does anyone has any idea what is wrong?

Thanks

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about internet-explorer