|
Post by Schubaltz on Jun 10, 2007 15:37:48 GMT -5
Description: Returns a node as a string of HTML (if second parameter is true, it returns the children as well).
Syntax: toHTML(object, boolean)
function toHTML(a, b) { var i = document.createElement("div"); i.appendChild(a.cloneNode(b)); return i.innerHTML; }
|
|