[][src]Trait stdweb::web::IChildNode

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

fn remove(&self)

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

(JavaScript docs)

Loading content...

Implementors

impl<T: IElement> IChildNode for T[src]

Loading content...