[EMAIL PROTECTED] 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);

_______________________________________________
Project_owners mailing list
[email protected]
http://mozdev.org/mailman/listinfo/project_owners

Reply via email to