var newDiv = $('My new div'); //create Div Element w/ jquery $( "#someOtherElement" ).append(newDiv); //append new div somewhere
$('hello').appendTo('#parent');