Im currently using the following code to append a div to the body:
$("body").append('<div class="tooltip" id="op" style="position: absolute; z-index: 999; height: 16px; width: 16px; top:70px"><span>Test</span></div>');
How could I do the same as above but without the use of jQuery
?