I am testing jQuery\'s .append() vs .appendTo() methods using following code:
.append()
.appendTo()
$(\'div/>\', { id : id, text : $(this).text()
append appends the parameter to the object you're working on.
append
appendTo appends the object you're working on to the parameter.
appendTo
More info here: http://api.jquery.com/appendTo/
aside from that, there is something wrong here:
$('div/>',
this is not selecting anything.