IE jQuery ajax results in a stack overflow
- by dave
I have the following code that in IE gives me an error in jQuery for "open(G,M.url,M.async"
$("#submitButton").click(function(){            
    $.ajax({
        type: "POST",
        url: "http://url.com/postChat.php",
        data: "comment="+$("#userInput").val(),
        success: function(msg){
        }
    });             
}); 
Any ideas as to why this would happen in IE?