how can i append a div directly to the window object?
<html>
<head>
</head>
<body>
<div><div>
<ul>..</ul>
</body>
</html>
and i want to append an element after the ul, but not something like $('ul').after(element), i just want to append it directly to body. thanks
$("body").append(element);
or $(element).appendTo("body");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With