Trait stdweb::traits::IChildNode [] [src]

pub trait IChildNode: ReferenceType {
    fn remove(&self) { ... }
}

The ChildNode interface contains methods that are particular to Node objects that can have a parent.

You most likely don't want to use this directly; instead you should use stdweb::traits::*;.

(JavaScript docs)

Provided Methods

The ChildNode.remove() method removes the object from the tree it belongs to.

(JavaScript docs)

Implementors