IE jQuery ajax results in a stack overflow
Posted
by dave
on Stack Overflow
See other posts from Stack Overflow
or by dave
Published on 2010-01-06T21:23:13Z
Indexed on
2010/03/25
23:03 UTC
Read the original article
Hit count: 233
jQuery
|internet-explorer
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?
© Stack Overflow or respective owner