Home | History | Annotate | Download | only in parse-only

Lines Matching refs:handler

336 					for ( var handler in events[ type ] ) {
337 jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
2437 add: function(elem, types, handler, data) {
2447 if ( !handler.guid )
2448 handler.guid = this.guid++;
2450 // if data is passed, bind to handler
2452 // Create temporary function pointer to original handler
2453 var fn = handler;
2455 // Create unique handler function, wrapped around original handler
2456 handler = this.proxy( fn );
2458 // Store data in unique handler
2459 handler.data = data;
2482 handler.type = namespaces.slice().sort().join(".");
2490 // Init the event handler queue
2494 // Check for a special event handler
2496 // events handler returns false
2498 // Bind the global event handler to the element
2506 // Add the function to the element's handler list
2507 handlers[handler.guid] = handler;
2521 remove: function(elem, types, handler) {
2536 handler = types.handler;
2549 // remove the given handler for the given type
2550 if ( handler )
2551 delete events[type][handler.guid];
2563 // remove generic event handler if no more handlers exist
2676 // Cache this now, all = true means, any handler
2684 var handler = handlers[j];
2687 if ( all || namespace.test(handler.type) ) {
2688 // Pass in a reference to the handler function itself
2690 event.handler = handler;
2691 event.data = handler.data;
2693 var ret = handler.apply(this, arguments);
2710 props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
2763 // Set the guid of unique handler to the same of original handler, so it can be removed
2937 // link all the functions, so any of them can unbind this click handler
3619 // don't attach the handler to the request, just poll it instead