Basic Ajax Request fails on IE 8

Basic Ajax Request fails on IE 8

Hello,
i have a very simple ajax request, on Chrome and FF, IE 8 it works very well. IE 8 returns "error", "complete"

the content /test.php :

  1. <div>test</div>

Ajax request:
  1. $(document).ready(function()
  2. {


  3. $('#test').click(function(){


  4. $.ajax({
  5. // dataType: "text",
  6.  url: '/test.php',
  7. //  type: "POST",
  8.  error : function(XMLHttpRequest, textStatus, errorThrown) { 
  9.                       alert("error");
  10.  },
  11.  complete: function(XMLHttpRequest, textStatus){ 
  12.                       alert("complete");
  13.                   },
  14.  success: function(data) {
  15.  alert("success");
  16.  }


  17. });




  18. });
  19.  
  20. });
any Ideas?