In the below code I'm trying to loop through each child node and append the child to another element - what is the correct syntax inside the loop?
$(this).children().each(
$(div).appendChild(this.childNodes.length - 1);
);
|
|
|
Within the Therefore:
|
|||
|
|
|
You should use a function callback or anonymous function in
or
I'm not sure if your code couldn't been improved but there is little I can say when I see only the small portion of it. |
|||
|
|