Don't know if this is the problem, but you're missing a semicolon (;) after the end of your $.get function call.
Carl Jan S wrote: > All of a sudden, xmlhttprequests don't work no more in IE7. FF > perfect, no problems. > Here the simple code: > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// > www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > <html xmlns="http://www.w3.org/1999/xhtml"> > <head> > <title>some title</title> > <meta http-equiv="Content-Type" content="text/html; > charset=utf-8" /> > <script type="text/javascript" src="bin/jquery/jquery.min.js"></ > script> > <script type="text/javascript"> > $(document).ready(function(){ > $.get('act/load.list.php', {kind:'contracts'}, function > (data) { > alert(data); > }) > }); > </script> > </head> > <body> > </body> > </html> > The Browser does the request, but "function (data) {}" is never > called. > This problem drives me crazy!!! > Please someone help. Or is it even a browser-property problem? > Thanks > > >

