Is it possible to manually render a Prototype JS element without using one of the update, insert, etc methods? If so, how?
That is, if I have the code
var test = new Element('div');
test.update("This is a test");
Is there a way to get a javascript variable with the string
<div>Hello</code>