Can't make jparse to work properly.

Can't make jparse to work properly.

Hi there!
I can't make the content of the xml-file to show. Callback & precallback functions work so it seems like the xml-file is loaded correctly. But the content doesn't show. I'm just not sure what I'm doing wrong here...
I've removed som tags in the html-code. I hope that someone has some experience working with this plugin and can help me out.

Below is the xml-file-content & the js-code below that.

Best, Niklas

XML-file
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <text>
  3. <test><![CDATA[<p>testing</p>]]></test>
  4. </text>

JS-code

  1. <script type="text/javascript">
  2.     // DOM is ready
  3.     $(document).ready (function()   
  4.     {
  5.         function start()
  6.         {
  7.             jQuery('#testcont').html('<img alt="Content Loading" src="images/ajax-loader.gif" />');
  8.         }
  9.        
  10.         function finished()
  11.         {
  12.             alert("Hello World!");
  13.             jQuery('#testcont').remove();
  14.         };
  15.        
  16.         // load xml-file for home
  17.         $('#ajax-cont').jParse
  18.         ({
  19.             precallback: start,
  20.             ajaxOpts: {url: 'entre.xml'},
  21.             callback: finished,
  22.             elementTag: ['test'],
  23.             output: '<p>jpet00</p>'
  24.                            
  25.         });
  26.     });
  27. </script>
  28. <title>Test</title>
  29. </head>
  30. <body>
  31. <div id="testcont"></div>
  32. <div id="ajax-cont"></div>
  33. </body>
  34. </html>