hasEvent()

Type : public method

Support : 0.6

Return : Boolean

  • 대상 개체에 등록된 이벤트가 있는지 확인.
    style, script같은 특정 노드에서는 사용할수 없다.
    "mousewheel", "transitionend" 크로스브라우징 해결.

Methods

  • hasEvent( type, handler ) : Booleanver 0.6~

    • type : String
      "on"빼고, "click"
    • handler : Function
      Event Handler

Example

var has = $B( '#box' ).hasEvent( 'click', mouseHandler );// true or false