I am new to javascript/jquery so this is a noob question :)
I am trying to get stuff into table with jquery. The stuff/data is in attributes and array and I would need to go trough that array to get that stuff.
In this I put some content into a array:
$(Stuff).find("desc").each(function(index) {
stuffArray[index]=$(this).text();
});
Here I put it into a table
$("#table").append('<td><a href="'+ siteRoot+'/'+item.url'"></a><td>'+item.title'</td><td>' + stuffArray[i+1] + '</td>');
I should loop the stuffArrau there I guess? But I dont know how to do it inse append thing like that.