I want to implement event delegation on blur / focus events, similar to the way it is suggested on quirksmode . As explained in the TFA, the blur and focus events do not bubble, so you cannot use event delegation with them in the bubbling phase, but you can capture them in the capture phase (human, javascript events are weird).
Anyway, as far as I can see, jQuery events all refer to the bubbling phase, or at least to the one where I always used them. I don't see any information about this anyway in jQuery docs and by default uses something like $ ('# foo'). Blur (blurHandler) doesn't seem to capture it.
I would rather use jQuery for consistency; is there any way to do this?
source
share