1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith text-transform: none;
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith .yui3-skin-sam td {
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith background-color: #E6E9F5;
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith .yui3-skin-sam .yui3-datatable td {
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith background-color: transparent;
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<div class="intro component">
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>The YUI Event Utility provides APIs for working with the browser's DOM
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith event system. It simplifies tasks like subscribing to button `click`s or
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith canceling <form> `submit`s to, for example, allow sending data to the
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith server via ajax.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>In addition, the "Synthetic event" system supplies <em>entirely new</em>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith DOM events to subscribe to as well as fixing events that behave differently
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith across browsers. Implementers can create their own DOM events triggered by
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith specific user actions or other environmental criteria.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>The API for working with DOM events is provided by the EventTarget class,
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith which also services the Custom event infrastructure that is used throughout
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith YUI. Read more about working with custom events <a
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith href="../event-custom/index.html">in the EventTarget user guide</a>.</p>
949cffcab80cdd0b820d11da7f7514cfd070d9faEric Ferraiuolo{{>getting-started}}
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<h2>The Basics</h2>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<h4>Listening for events</h4>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith// Step 1. Capture a button node
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithvar button = Y.one("#readygo");
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith// Step 2. Subscribe to its click event with a callback function
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithbutton.on("click", function (e) {
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith // Step 3. do stuff when the button is clicked
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p><code>on(<em>type</em>, <em>callback</em>)</code> is the main
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithsubscription method, and is available on every <a href="../node/">`Node`</a>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithand <a href="../node/#nodelist">`NodeList`</a>.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>Replace "click" with <a href="#event-whitelist">any other event name</a> to subscribe to that event.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<h4>The Callback and the Event Object</h4>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithbutton.on('click', function (e) {
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith // `this` is the button Node, NOT the DOM element
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith this.get('id'); // ==> 'readygo' (from <button id="readygo">...</button>)
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith // Event properties that point to the DOM are also Node instances
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith e.target.get('id'); // => 'readygo'
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith // Stop the event's default behavior
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith // Stop the event from bubbling up the DOM tree
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>Subscribed callbacks are passed a <a href="#facade-properties">a normalized
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithevent object</a> as their first argument.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>The keyword "`this`" in the callback will refer to the Node or NodeList
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smiththat you subscribed from.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<h4>`e.preventDefault()` and `e.stopPropagation()`</h4>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>Many events have a default behavior, such as the `submit` event serializing
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithform data and making a new page request. Disable this behavior with
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithfunction setFilter(e) {
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith // Stop the link from loading the href page
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith // Now do my own thing instead
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith var url = this.get('href').replace(/page/, 'partial');
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Y.one('#contentArea').load(url);
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith // `return false` is supported, but not preferred. use e.preventDefault()
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith return false;
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke SmithY.one('#table-filter-link').on('click', setFilter);
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>Most events can be listened for on the specific element that originates them
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<em>or from any of their parent elements</em>, all the way up to the
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith`document`. Prevent dispatching the event to subscriptions bound to elements
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithfurther up the DOM tree with `e.stopPropagation()`. In practice, this is
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithrarely useful.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>Returning `false` from a callback will also stop the propagation of the
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithevent, which may cause unintended side effects.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>`e.stopPropagation()` won't prevent the execution of other subscribers
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithlistening to the same element, only elements further up the DOM tree. If you
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithneed to stop all execution, use `e.stopImmediatePropagation()` or
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith`e.halt(true)`. The latter will also call `e.preventDefault()`.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<h4>Detaching subscriptions</h4>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>`node.on()` and all
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<a href="#more">other subscription methods</a> return a
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithsubscription object that can be used to unbind that subscription. Node also
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithsupports a `detach()` method and <a href="#detach-methods">other ways to cleanup
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithsubscriptions</a>.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith// on() returns a subscription handle...
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithvar sub = button.on("click", handleClick);
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith// ...that can be used to unbind the subscription
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith// Alternately, use the Node's detach() method
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smithbutton.detach("click", handleClick);
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<p>Just this should take care of most of the simple event bindings you'll need.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke SmithThere's <a href="#more">a lot more you can do</a>, though, so read on!</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith<h2 id="modules">What to `use()`</h2>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Before we get into <a href="#more">more API goodies</a>, let's talk about
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith the Event Utility's module breakdown.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith For starters, in most cases <em>you probably won't `use('event')`</em>.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith The core DOM event system ("event-base") is required by the "node-base"
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith module, which itself if required by just about everything in YUI. So you
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith probably already have the DOM event API and didn't know it!
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith<p>Here is the full breakdown of modules in the DOM event system:</p>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <th>`use("______", ...)`</th>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <th>What's in it?</th>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <td><a href="{{apiDocs}}/module_event-base.html">`event-base`</a></td>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith The core DOM event subscription system as well as the DOM
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith lifecycle events <a href="domready.html">`domready`,
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith `contentready`, and `available`</a>. Notably, it does NOT
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <li>event delegation</li>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <li>event simulation</li>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <li>synthetic events</li>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <p>If you've `use()`d anything, you probably have this already.</p>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <td><a href="{{apiDocs}}/module_event.html">`event`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith A rollup of all modules below except
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <li>"event-simulate"</li>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <li>"node-event-simulate"</li>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <li>"node-event-delegate" (which is in the "node" rollup)</li>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <td><a href="{{apiDocs}}/module_event-delegate.html">`event-delegate`</a> &
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith <a style="white-space: nowrap;" href="{{apiDocs}}/module_node-event-delegate.html">`node-event-delegate`</a></td>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith Adds the `Y.delegate(...)` and `node.delegate(...)` methods,
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith respectively, for <a href="#delegation">event delegation</a>
14ea8dcb06b6d844dd99b7e18cca99172bea0cfdLuke Smith convenience.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-simulate.html">`event-simulate`</a> &
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <a style="white-space: nowrap;" href="{{apiDocs}}/module_node-event-simulate.html">`node-event-simulate`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds `Y.Event.simulate(...)` and `node.simulate(...)` for
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <a href="#simulate">triggering native DOM events</a> for
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith unit testing.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <strong>Note: <a href="simulate.html#faking">Faking DOM events
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith should not be used in user facing code</a></strong>.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-synthetic.html">`event-synthetic`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>Supplies the infrastructure for creating new DOM events, "fixing"
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith existing events with undesirable or inconsistent behavior, and
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <a href="synths.html">all sorts of other things</a>.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>All of the modules below are synthetics.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-flick.html">`event-flick`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds a <a href="touch.html#flick">"flick" event</a> for touch or
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith mouse interaction.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-focus.html">`event-focus`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <a href="focus.html">Fixes `focus` and `blur` events</a> to bubble
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith (for delegation).
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-gestures.html">`event-gestures`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>A rollup of the following modules:</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <li>"event-touch"</li>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <li>"event-move"</li>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <li>"event-flick"</li>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>In the future, may contain more gesture abstraction modules.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-hover.html">`event-hover`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds a <a href="mouseenter.html#hover">"hover" event</a> which
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith binds to two callbacks, one for the start, and one for the end of a
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith mouse hover.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-key.html">`event-key`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds a <a href="key.html">"key" event</a> which listens for
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith specific, implementer defined, keys being pressed by the user.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-mouseenter.html">`event-mouseenter`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds <a href="mouseenter.html">"mouseenter" and "mouseleave"
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith events</a>. You probably want to use these instead of "mouseover"
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith and "mouseout".
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-mousewheel.html">`event-mousewheel`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>Adds a "mousewheel" event for monitoring users scrolling the
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith window with the mousewheel. Event facades passed to the callback
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith will have an `e.wheelDelta` property corresponding to the amount of
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith scrolling.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>Currently, this event can only be subscribed with
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith `Y.on("mousewheel", callback)`;</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-move.html">`event-move`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds <a href="touch.html#move">"gesturemovestart", "gesturemove",
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith and "gesturemoveend" events</a> that serve as abstractions over
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith mouse and touch events, forking internally based on the client
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-outside.html">`event-outside`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds a <a href="outside.html">"clickoutside" and several other
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith outside events</a> to trigger behavior based on actions taken
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith outside a specific element.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-resize.html">`event-resize`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>Adds a "windowresize" event that only fires after a user has
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith stopped dragging a window's resize handle. This normalizes the
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith `window.onresize` event across browsers.</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <p>This event can only be subscribed with
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith `Y.on("windowresize", callback)`;</p>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-touch.html">`event-touch`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds support for <a href="touch.html">subscribing to native touch
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith and gesture events</a>.
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith <td><a href="{{apiDocs}}/module_event-valuechange.html">`event-valuechange`</a></td>
daa301d2a0f17b5c1b04d777de3acf969b9b63d2Luke Smith Adds a <a href="valuechange.html">"valuechange" event</a> that fires when input element text
<td><a href="{{apiDocs}}/module_event-contextmenu.html">`event-contextmenu`</a></td>
<a href="contextmenu.html">Fixes bugs and inconstancies</a> that can occur when the "contextmenu" event is fired via the keyboard. <a href="contextmenu.html#the-value-of-the-contextmenu-synthetic-event">Adds sugar for working with the "contextmenu" event</a>.
href="delegation.html">read this quick overview</a>. Short form: <em>you need
node.on("click", handleClick);
node.delegate("click", handleClick, "button, input[type=button]");
this.ancestor('li').remove();
<a href="{{apiDocs}}/module_event-delegate.html#method_delegate">API docs</a>
// Y.on() takes a third argument which is the Node, DOM element,
Y.on("click", handleClick, "#readygo");
// Y.delegate() similarly takes the containing element or selector
Y.delegate("click", handleClick, "#container", "button, input[type=button]");
An alternate syntax for DOM subscriptions is using `Y.on()` or
`Y.delegate()`. When identifying the target by a CSS selector, these
tabLabel.once('mouseover', loadTabContent);
<p>If you only want to execute a callback on the first occurrence of an event, use `node.once()` or `Y.once()`. The subscription will automatically be detached after the event fires.</p>
var groupSub = inputNode.on({
groupSub = inputNode.on(['focus', 'mouseover'], activate);
inputNode.on('my-category|focus', activate);
inputNode.on('my-category|mouseover', activate);
inputNode.detach('my-category|*');
`delegate()`. Note that the argument index is shifted when using `Y.on()`
Y.log(param); // => "I'm Extra!"
this.someMethod(extraParam);
var instance = new Y.MyClass();
var subscription = node.on('click', callback);
node.on('foo-category|click', callback);
node.detach('foo-category|click');
node.detach('foo-category|*');
node.detach('click', callback);
node.detach('click');
node.detach():
Works the same as `node.detach()`.
node.purge();
node.purge(true);
node.purge(true, 'click');
With no arguments, `purge` works the same as `node.detach()`.
node.empty();
node.destroy();
node.destroy(true);
With no arguments, works like `node.detach()`.
`node.purge(true)`.
<a href="{{apiDocs}}/classes/Node.html#method_destroy">API
Y.Event.detach('click', callback, '#foo');
Same as `Y.one('#foo').detach( [other args] )`.
Y.Event.purgeElement('#foo', true, 'click');
Same as `Y.one('#foo').purge( [other args] )`.
var test = new Y.Test.Case({
var widget = new Y.MyFancyWidget().render('#here'),
uiBox = widget.get('boundingBox'),
closeButton = uiBox.one('.close-button');
closeButton.simulate('click');
`node.simulate( type, eventProperties )` creates a native DOM event that
For example, `node.simulate('submit')` will not send data to the server for
<p>Read <a href="simulate.html">more about event simulation here</a>.</p>
Y.one('#dialog').on('clickoutside', function (e) {
this.transition('fadeOut');
Y.one('#editable-table').delegate('key', saveAndAdvance, 'tab', 'input');
<a href="http://yuilibrary.com/gallery/">in the Gallery</a>. Most events
<p>Create your own synthetic events with `Y.Event.define(type, config)`.</p>
Y.Event.define("tripleclick", {
// The setup logic executed when node.on('tripleclick', callback) is called
subscription._handle = node.on('click', function (e) {
notifier.fire(e);
Y.later(300, this, this._clear, [subscription]);
Y.one('#hellokitty').on('tripleclick', omgYayCantClickEnough);
<p>There is additional configuration to <a href="synths.html">add support for
<h2>Troubleshooting/FAQ</h2>
<li><a href="#function-reference">My callback is executing at the wrong time. What's going on?</a></li>
<li><a href="#wrong-this">I'm getting an error in my callback that "(some object) has no method (someMethodOnMyObject)". What am I missing?</a></li>
<li><a href="#y-on-vs-node-on">Why would I use `Y.on()` or `Y.delegate()` instead of `node.on()` and `node.delegate()`?</a></li>
<li><a href="#after">EventTarget also provides an `after()` method. How does that work for DOM events?</a></li>
<li><a href="#nodelist-this">When I subscribe to an event from a NodeList, `this` is the NodeList, not the individual Node. What's up with that?</a></li>
<li><a href="#nodelist-delegate">Where is `nodelist.delegate()`?</a></li>
node.on('click', someFunction());
node.on('click', someFunction);
return value from the function to `node.on('click', [RETURN VALUE])`. To
<h4 id="wrong-this">I'm getting an error in my callback that "`(some object) has no method (someMethodOnMyObject)`". What am I missing?</h4>
<h4 id="y-on-vs-node-on">Why would I use `Y.on()` or `Y.delegate()` instead of `node.on()` and `node.delegate()`?</h4>
`Y.on()` uses the
<a href="{{apiDocs}}/classes/Selector.html">Selector engine</a>
directly rather than calling through `Y.all(...)`.
<h4 id="after">`EventTarget` also provides an `after()` method. How does that work for DOM events?</h4>
<h4 id="nodelist-this">When I subscribe to an event from a NodeList, `this` is the NodeList, not the individual Node. What's up with that?</h4>
In the callback, `e.currentTarget` will always refer to the individual Node.
you can't reference the NodeList captured by `Y.all()` without calling
`Y.all()` again, but that results in unnecessary overhead, and may match
In general, you should avoid `nodelist.on()` anyway,
<h4 id="nodelist-delegate">Where is `nodelist.delegate()`?</h4>
`nodelist.delegate()` would be philosophically at odds with that. Either
call `node.delegate()` from an element higher up the DOM tree, or <em>if
nodelist.each(function (node) {
node.delegate('click', callback, '.not-recommended');
<h3><a href="domready.html">Page Lifecycle events</a></h3>
the event core. <a href="domready.html">Read more...</a>
<h3><a href="delegation.html">Event Delegation</a></h3>
<a href="delegation.html">Read more...</a>
<h3><a href="simulate.html">Event Simulation</a></h3>
<a href="simulate.html">Read more...</a>
<h3><a href="synths.html">Create New DOM Events</a></h3>
<a href="synths.html">Read more...</a>
<h3><a href="touch.html">Working With Touch Events</a></h3>
Details on the supported touch events, the touch/mouse abstraction layer
<a href="touch.html">Read more...</a>
<h3><a href="focus.html">Delegating the `focus` and `blur` Events</a></h3>
<a href="focus.html">Read more...</a>
<h3><a href="mouseenter.html">The `hover`, `mouseenter`, and `mouseleave` Events</a></h3>
<a href="mouseenter.html">Read more...</a>
<h3><a href="key.html">Complex Keyboard Input Filtering</a></h3>
<a href="key.html">Read more...</a>
<h3><a href="outside.html">Responding to Events <em>outside</em> of a Node</a></h3>
<a href="outside.html">Read more...</a>
<h3><a href="valuechange.html">Monitoring Changes to `<input>` and `<textarea>` Values</a></h3>
`input.on('change', callback)` is not enough.
<a href="valuechange.html">Read more...</a>
<h3><a href="contextmenu.html">Keyboard Accessible `contextmenu` Events</a></h3>
<a href="contextmenu.html">Read more...</a>
node = Y.one('#events');
node.all('td:nth-of-type(1)').each(function (node, i) {
Event: node.get('text'),
"Added By": node.next().get('text')
node.empty().addClass('yui3-skin-sam');
new Y.DataTable({
names to the `Y.Node.DOM_EVENTS` object.</p>
<dt>`e.preventDefault()`</dt>
Prevents the default action associated with the event. E.g. page
<dt>`e.stopPropagation()`</dt>
<dt>`e.stopImmediatePropagation()`</dt>
<dt>`e.halt( [immediate=false] )`</dt>
<dt>`e.type`</dt>
The name of the event. E.g. "click", "keyup", or "load".
<dt>`e.target`</dt>
href="delegation.html">the description of event delegation</a> for
<dt>`e.currentTarget`</dt>
<dt>`e.relatedTarget`</dt>
<dt>`e.keyCode`</dt>
<dt>`e.charCode`</dt>
<dt>`e.shiftKey`</dt>
<dt>`e.ctrlKey`</dt>
<dt>`e.altKey`</dt>
`true` if the alt/option key was depressed during a key event.
<dt>`e.metaKey`</dt>
<dt>`e.button`</dt>
<dt>`e.which`</dt>
Alias for e.button.
<dt>`e.pageX`</dt>
<dt>`e.pageY`</dt>
<dt>`e.clientX`</dt>
<dt>`e.clientY`</dt>
<dt>[`e.wheelDelta`]</dt>
<dt>[`e.touches`]</dt>
<dt>[`e.targetTouches`]</dt>
<dt>[`e.changedTouches`]</dt>
<p>These properties are unique to Webkit on iOS currently, and are provided on the event facade when listening for the iOS `gesturestart`, `gesturechange` and `gestureend` multi-touch events.</p>
<dt>[`e.scale`]</dt>
See Apple's documentation for <a href="http://developer.apple.com/library/safari/documentation/UserExperience/Reference/GestureEventClassReference/GestureEvent/GestureEvent.html#//apple_ref/javascript/instp/GestureEvent/scale">scale</a>.
<dt>[`e.rotation`]</dt>
See Apple's documentation for <a href="http://developer.apple.com/library/safari/documentation/UserExperience/Reference/GestureEventClassReference/GestureEvent/GestureEvent.html#//apple_ref/javascript/instp/GestureEvent/rotation">rotation</a>.
<p>See the <a href="http://www.w3.org/TR/touch-events/">W3C Touch Events Specification</a>, derived from the Webkit model, for more details.</p>
<p>Synthetic events may add or modify event facade properties. These should be included in the documentation for the specific synthetic event.</p>
href="https://developer.mozilla.org/en/DOM/event#Properties">MDC