Why does the following code work in firefox and not chrome? I'm testing this locally.
Thanks.
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
$('#test').load('todo.xml');
});
</script>
</head>
<body>
<div id="test">
</div>
</body>
</html>