Closed July-G closed 10 years ago
Hi: Suppose below html:
<div id="content" contenteditable=true ></div>
$("body").delegate("#content", "focus", new Function() { @Override public void f() { //never called } });
does not work but with native jquery it works:
private native void bindFocus() /*-{ $wnd.$('body').delegate("#content", "focus", function(){ $wnd.alert("works"); }); }-*/;
I'm using gquery 1.4.0 snapshot. Thanks.
yes, focusin and focusout is not implemented yet : see issue #11
Hi: Suppose below html:
does not work but with native jquery it works:
I'm using gquery 1.4.0 snapshot. Thanks.