I have some XML
<carouselitem name='carouselitem'><flick><pic>/images/test1.jpg</pic><headertext>sdfsdfsdf csfdfsdf</headertext><dek>sdfsfsd sdfsf dsfsfdsfds sdf sdfsfds</dek></flick></carouselitem>
Wrapped in DIV with an id of carousel. The below works fine for FF
var carouselarray = $('#carousel carouselitem');
jQuery.each(carouselarray, function(){
var row_to_insert = $(this).html();
carouselxml += row_to_insert;
});
The row_to_insert var get filled with the XMl fine in FF but is empty in IE and Chrome. Any help would eb appreciated
Thanks