[jQuery] getting javascript code instead of node value
hi, when I run this I am getting a response from the page I request
xml from but the problem is in that I
fail extracting the text from the xml tags, what am I doing wrong
here? anyone?
$.get( "search_wiki.php?keyword="+searchString,
function(xmlData){
$("Item", xmlData).each(function(){
var title = $(this).find("Text").text;
var url = $(this).find("Url").text;
$('<li><a href="'+url+'">'+title+'</a></li>').appendTo
('#wiki_article_list');
});
});
many thanks
/par