Try returning the node, and not the text...
$.get('http://url.to/feed', function(feed) { data = $(feed).find('item:first'); $('#testbox').html(data);}, 'xml');
Try returning the node, and not the text...
$.get('http://url.to/feed', function(feed) { data = $(feed).find('item:first'); $('#testbox').html(data);}, 'xml');