removeCss

removes a CSS class from a DOM node

void removeCss(HTMLElement node,string name);
nodeHTMLElementa DOM node
namestringthe name of a CSS class to remove

Example

//any node
webix.html.removeCss(node, "selected");
 
//webix component top node
webix.html.removeCss( $$("dt").getNode(), "mycss");

See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.