X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fevent%2Fevent.js;h=fd4385cf191b1bd4dbdb823f66078bd610e5c73c;hb=2abe5934f6793606c8717b6282f54d7eca1bd42c;hp=72ea29aac25be03a5c6bb8c9c54a39570d965e8a;hpb=dd27ea5830e0fb9116642a0e779ea18c31179379;p=jquery.git diff --git a/src/event/event.js b/src/event/event.js index 72ea29a..fd4385c 100644 --- a/src/event/event.js +++ b/src/event/event.js @@ -315,6 +315,9 @@ new function(){ * Trigger the focus event of each matched element. This causes all of the functions * that have been bound to thet focus event to be executed. * + * Note: This does not execute the focus method of the underlying elements! If you need to + * focus an element via code, you have to use the DOM method, eg. $("#myinput")[0].focus(); + * * @example $("p").focus(); * @before

Hello

* @result alert('Hello'); @@ -655,6 +658,9 @@ new function(){ * Trigger the blur event of each matched element. This causes all of the functions * that have been bound to thet blur event to be executed. * + * Note: This does not execute the blur method of the underlying elements! If you need to + * blur an element via code, you have to use the DOM method, eg. $("#myinput")[0].blur(); + * * @example $("p").blur(); * @before

Hello

* @result alert('Hello'); @@ -1527,7 +1533,7 @@ new function(){ */ var e = ("blur,focus,load,resize,scroll,unload,click,dblclick," + - "mousedown,mouseup,mousemove,mouseover,mouseout,change,reset,select," + + "mousedown,mouseup,mousemove,mouseover,mouseout,change,select," + "submit,keydown,keypress,keyup,error").split(","); // Go through all the event names, but make sure that