Hi,
Have you tried something like this?
var items = $(text).find("tr td:nth-child(1)");
console.log('items: ', items); // <--!!
$.each(items, function(i, itm) {
console.log('i: ' + i, $("<li />")); // <--!!
$("<li />").text(itm).appendTo(place);
});
-m
--
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywikidev?hl=en.