Heyho,
imagine, you have a DOMelement like
text
and you have saved this in a variable elem in a function
function(elem){ var elem=elem; }
And NOW you want (in fact it is me who wants that :-)) to save this dom object as a string like "text"
How would you manage this? I tried sth. like elem.toString() which didn't work or elem.html() which just returns the INNER html.
Thanks a lot! Best, ho