removeChild()

Type : public method

Support : 0.6

Return : -

  • 대상 개체의 자식요소 삭제.

Methods

  • removeChild( child ) : voidver 0.6~

    • child : ElementInt
      Element나 index: 0~ 수치가 자식수보다 크거나 작으면 에러발생

Example

var el = $B( '#box' ).selector( 'div.child' );

$B( '#box' ).removeChild( el );
$B( '#wrap' ).removeChild( 2 );