removeCss

removes a CSS class from a DOM node

void removeCss(HTMLElement node,string name);
node
HTMLElementa DOM node name
stringthe 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
  • API
  • 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.