Jquery works in IE/FF not in Chrome

Jquery works in IE/FF not in Chrome

Objective is to read from ticker.xml, parse, and set the html of headline1, headline2, headline3, etc. divs to the values of ticker.xml.

This works great in IE 8 and FF but not in Chrome. Any thoughts?

<script type="text/javascript">
$(document).ready(function()
{
  $.ajax({
    url: 'ticker.xml',
    type: 'GET',
    dataType: 'xml',
    timeout: 1000,
  error: function(xhr, status, error) {
var err = eval("(" + xhr.responseText + ")");
 alert(xhr);
},
    success: parseXml
});
function parseXml(xml)
{
var i = 0;
 //find every Tutorial and print the author
$(xml).find("ticker").each(function()
{
i++;
$("#headline"+i).html($(this).find("headline").text());
});
}
});
</script>