jqueryでxmlのdc:dateを取得するには

jqueryajaxにて、dc:date要素を取得する場合はコロンの前にバックスラッシュx2を指定する必要あるようだ。

$(document).ready(function() {
	$.ajax({
		type: "GET",
		async: true,
		url: "/foo/bar.xml",
		dataType: "xml",
		success: function(xml) {
			$(xml).find("item").each(function() {
				var title = $("title", this).text();
				var date = new Date($("dc\\:date", this).text());
				....
			});
		}
	});
});