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?