$(function() {
	$('#xmldomExample').click(function(){
		var xml = '<item><title>Hello world!</title></item>';
		$.xmlDOM( xml )
			.find('item > title')
				.each(function() {
					// Alert's 'Hello world!'
					alert( $(this).text() );
				});
		return false;
	});
});
