Ajax call doesnt return anything

Ajax call doesnt return anything

Hi,

The below code works in IE & Safari but not in Firefox and Chrome. Dont know why. Can you pls help.


<HTML>
 <HEAD>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

<script type="text/javascript">      

      $.ajax({
            type: 'GET',
            url: "http://yse-uk.com/hijridate/hijridate.php",
            dataType: "html",
            success: function(msg) {
                alert(msg);
            }
        });

</script>

 </HEAD>

 <BODY>
 
 </BODY>
</HTML>