[Project_owners] Markup in description elements (SOLVED)
Michael Vincent van Rantwijk
mv_van_rantwijk at yahoo.com
Tue Apr 24 20:02:09 PDT 2007
eric.jung at yahoo.com wrote:
> Could you post Neil's solution here as I don't have a mail reader?
Sure, here it is:
"This should be <b>bold</b>"
var bold = document.createElementNS(XHTML_NS, "b");
bold.appendChild(document.createTextNode("bold"));
description.appendChild(document.createTextNode("This should be "));
description.appendChild(bold);
More information about the Project_owners
mailing list