vote up 1 vote down star

I am currently testing this in Mozilla FireFox 3.0.5 using FireBug 1.3.0 with jQuery 1.2.6.

First try

document.getElementById("x").onfocus = function ()
{
    var helloWorld = "Hello World";
};

FireBug console:

document.getElementById("helloworld").onfocus.toString() = function body as a string

$("#helloworld").get(0).onfocus.toString() = function body as a string


Second try

$("#helloworld").focus(function ()
{
    var helloWorld = "Hello World";
});

FireBug console:

document.getElementById("helloworld").onfocus.toString() = FireBug returns nothing

$("#helloworld").get(0).onfocus.toString() = FireBug returns nothing


What am I missing here? Why can't I find the callbacks when attaching them with jQuery?

flag

2 Answers

vote up 3 vote down check

To view events that jQuery has bound use :

$("#helloworld").data('events');

If you bind the focus as per your example and you run the above in firebug console it will return

Object focus=Object
link|flag
vote up 3 vote down

jQuery doesn't attach the callbacks directly, instead it stores them internally in a registry. Whenever an event is triggered, jQuery looks in the registry and calls the callback that you asked for earlier.

This gives you the advantage of being able to stack multiple callbacks onto a single element's event, but it has the disadvantage that you must use jQuery's event handler routines to set, get, and remove the callbacks.

link|flag
I can't seem to find any documentation on the event-registry on the jQuery site. Could you elaborate? – roosteronacid Jan 14 at 12:30
What exactly do you want to know? The Jquery website primarily describes the objects and interfaces used, it doesn't get into the internals of how they accomplished it very much. If you look at the jQuery source at where events are bound, you'll see what they are doing. – Adam Bellaire Jan 14 at 12:43
(that's what I did when I became curious :) – Adam Bellaire Jan 14 at 12:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.