id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
9352,Internet Explorer aborts first AJAX request,Tekin,Tekin,"I have this small code

{{{
$.getJSON('/ajax.php',{
		mode: 'submitBlogEntry',
		entry: $('#formular').serialize()
	},
	function(data){
		if (data.message == 'reload') {
			pageReload();
		}
		else
			  showMessage(data.message, data.caption, 'small', 'notify');
	}
);
}}}
A simple post for our blog. When I submit this request with Internet Explorer (tested with IE 8) the request is sent to the server but IE aborts the JS of jQuery. Doing a second submit without reloading the page the request is sent and IE waits for the respond to react properly.

I tried to add random data and changed the request to POST without getting any better result.",bug,closed,low,1.next,ajax,1.6.1,invalid,,,,
