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

link|improve this question

71% accept rate
maybe you're looking for outerHTML property stackoverflow.com/questions/8588482/… – F. Calderan Dec 22 '11 at 16:17
feedback

2 Answers

up vote 0 down vote accepted

For jQuery you might want to refer it as

var elem = $('#elem');
var strElem = elem[0].outerHTML;
if(strElem == null) {
    strElem = $('<div>').append(elem.clone()).html();
}

http://jsfiddle.net/KRgkc/3/

link|improve this answer
oh my..ok this works as well as the example above, BUT NOT in Firefox 8 as it seems! it works for chrome, safari..but not for ff! how can this be.... :-( – ho.s Dec 22 '11 at 16:37
@ho.s oh, well, it's not supported! I'm updating my answer... – Nacho Dec 22 '11 at 16:46
@ho.s the FF approach is to clone elem, append it to a created from scratch div, and return the html of that div ;). Otherwise, outerHTML – Nacho Dec 22 '11 at 16:50
1  
thanks a lot! i applied your solution, works! I wouldn't have come to that.. – ho.s Dec 23 '11 at 10:18
glad it helped! – Nacho Dec 23 '11 at 10:22
show 1 more comment
feedback

Sounds like you want the outer html:

elem.outerHTML
link|improve this answer
thx, but..hm..as for the reason I get the element by var elem= anotherelem.parent('.classname') the outerHTML property is not defined for this? is there a jquery method for outerHTML? – ho.s Dec 22 '11 at 16:20
You're right Mike, try this @ho.s jsfiddle.net/KRgkc – Nacho Dec 22 '11 at 16:20
hm, when I click on the link, the alert says "undefined" – ho.s Dec 22 '11 at 16:32
seems as if it just don't work for firefox, but I need to support ff. bummer! – ho.s Dec 22 '11 at 16:38
1  
Hey @ho.s check out this answer for a much more complete solution stackoverflow.com/a/3819589/724626 – Joe Tuskan Dec 22 '11 at 17:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.