[jQuery] Selector Question
Why does this work?
$($("button")[0]).bind("click", function(event){return AlertOnClick
(this + " not " + $("button")[0]);});
And why does this DOESN'T?
$("button")[0].bind("click", function(event){return AlertOnClick(this
+ " not " + $("button")[0]);});