MenuManager.appendToolbarSeparator Member
Appends a toolbarseparator to an existing box.
Syntax
object.appendToolbarSeparator(parentNode, beforeNode, attribs);
Arguments
Argument | Summary |
---|---|
parentNode | DOM Node to insert into |
beforeNode | DOM Node already contained by parentNode, to insert before |
attribs | Object containing CSS attributes to set on the element. |
Returns
Remarks
See Also
Source Code
function mmgr_addmenu (parentNode, beforeNode, attribs)
{
var document = parentNode.ownerDocument;
var tbitem = document.createElement ("toolbarseparator");
tbitem.setAttribute ("isSeparator", true);
if (typeof attribs == "object")
{
for (var p in attribs)
tbitem.setAttribute (p, attribs[p]);
}
parentNode.appendChild (tbitem);
return tbitem;
}