toNode

returns an HTML node object

HTMLElement toNode(string id);
idstringthe id of the element you want to access
HTMLElementan HTML node

Example

var node = webix.toNode("someId");

Details

The method works as the getElementById() method.

See also
Back to top