Comment créer un élément HTML dans JavaScript sans document

 var myEl = $('<div> ....</div>');
 $('#myDiv').append(myEl);
Xanthous Xenomorph