.load() not working in IE8

.load() not working in IE8

Hi,

I've this code that works fine in FF, Chrome & Safari, but doesn't work in IE8,

  1. <script language="JavaScript">
  2. setInterval( "SANAjax();", 5000 );
  3.  
  4. $(function() {
  5. SANAjax = function(){
  6.  
  7. $('#myDIV).load("divcontent.php").fadeIn("slow");
  8.  
  9. }
  10.  });
  11. </script>
Appreciate any help.

Thanks in advance.