Motionbox EventHandler Focus and Blur Bubbling Update
10.31.08 - 12:38pm
The Motionbox EventHandler ( http://github.com/tobowers/motionbox-eventhandler/tree/master ) now supports focus and blur bubbling. Based on this technique. Internet Explorer is supported too (behind the scenes it uses focusin and focusout, but you don't need to know that).
PLAIN TEXT
HTML:
<form id="formy" action="#">
<input id="inputy1" name="inputy1" class="input_field" />
<input id="inputy2" name="inputy2" class="input_field" />
</form>
PLAIN TEXT
JavaScript:
// This now [...]