i wrote this code but noting happens.. can't find the error. even firebug is empty :(
please help soon!

$(document).ready(function(){
	$.ajax({
		type: "GET",
		url: "tinymce.xml",
		dataType: "xml",
		success: function(xml) {
			$(xml).find('userdata').each(function(){
				$(this).find('dataset').each(function(){
					var title = $(this).find('redo').text();
					var id = $(this).find('redo').attr('id');
				 	//var url = $(this).find('url').text();
					alert(id);
					//$('<div class="items"></div>').html('<a>'+title+'</a>').appendTo('#system');
				});
			});
		}
	});
});

ok found it thanxx :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.