[jQuery] IE 6 issues with ajax call

[jQuery] IE 6 issues with ajax call


When loading the following into IE 6. I get no error. Nothing. Any
help is appreciated.
<html>
<head>
<title>Parse XML with JQuery</title>
<script language="javascript" src="jquery-1.2.1.js"></script>
<script language="javascript">
$(function() {
$.ajax({
type: "POST",
url: "books.xml",
dataType: "xml",
success: function(xmlData)
{
xmlDataSet = xmlData;
buildHTMLFromXML();
}
});
});
function buildHTMLFromXML()
{
resultSetLength = $("book",xmlDataSet).length;
strToAppend = "<strong>There are a total of " + resultSetLength
+ " books</strong>.<br />";
strToAppend += "------------------------<br />";
$("title",xmlDataSet).each(function(i) {
strToAppend += "<strong>" + $(this).text() + "</strong><br /