trigger()

Type : public method

Support : 0.7

Return : -

  • .addEvent() Method 로 등록된 이벤트 강제 샐행
    Custom Event 실행 가능.

Methods

  • trigger( type, data ) : voidver 0.6~

    Event Properties : type, currentTarget, data
    • type : String
      "on"빼고, "click"
    • data : *
      Event Handler 에서 전달받을 데이타

Example

$B( '#box' ).addEvent( 'click', function (e) {
    console.log( e.data ); //test-name
});

$B( '#box' ).trigger( 'click', 'test-name' );

//Custom Event
$B( '#box' ).addEvent( 'myEvent', function (e) {
    console.log( e.data ); //my-name
});

$B( '#box' ).trigger( 'myEvent', 'my-name' );