aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/window/index.html
blob: af317f6eab9c01fc1b3b0716b12b4159f54e9603 (plain)
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
---
title: Window
slug: Web/API/Window
tags:
  - DOM
  - Gecko
  - Reference_del_DOM_di_Gecko
  - SezioneIncompleta
  - TraduzioneIncompleta
  - Tutte_le_categorie
translation_of: Web/API/Window
---
<p>{{ ApiRef() }}</p>

<h3 id="Introduzione" name="Introduzione">Introduzione</h3>

<p>Questo capitolo contiene una breve reference per tutti i metodi, proprietà, ed eventi disponibili attraverso l'oggetto <code>window</code> del DOM. L'oggetto <code>window</code> implementa l'interfaccia<em>window</em> , la quale eredita dall'interfaccia <strong>AbstractView</strong>.</p>

<p>L'oggetto <code>window</code> rappresenta una finestra, contenente un documento DOM. La proprietà <span class="seoSummary"><code>document</code></span> punta ad un <span class="seoSummary"><a href="https://developer.mozilla.org/en-US/docs/DOM/document">DOM document</a> ( documento DOM ) caricato in quella pagina</span></p>

<p>Ogni tab che viene aperta contiene il suo personale oggetto <code>window</code>; ciò significa che l'oggetto <code>window</code> non è condiviso fra le varie tab aperte nella stessa finestra. Solo due metodi vengono condivisi dai vari oggetti <code>window</code> presenti in una stessa finestra, e sono i metodi <a href="it/DOM/window.resizeTo">window.resizeTo</a> e <a href="it/DOM/window.resizeBy">window.resizeBy</a>.</p>

<h3 id="Propriet.C3.A0" name="Propriet.C3.A0">Proprietà</h3>

<dl>
 <dt><a href="it/Components_object">window.Components</a></dt>
 <dd>The entry point to many <a href="it/XPCOM">XPCOM</a> features. Some properties, e.g. <a href="it/Components.classes">classes</a>, are only available to sufficiently privileged code.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.content">window.content</a> and window._content</dt>
 <dd>Returns a reference to the content element in the current window. The variant with underscore is deprecated.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.closed">window.closed</a></dt>
 <dd>This property indicates whether the current window is closed or not.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.controllers">window.controllers</a></dt>
 <dd>Returns the XUL controller objects for the current chrome window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.crypto">window.crypto</a></dt>
 <dd>Returns the browser crypto object.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.defaultStatus">window.defaultStatus</a></dt>
 <dd>Gets/sets the status bar text for the given window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.directories">window.directories</a></dt>
 <dd>Returns a reference to the directories toolbar in the current chrome.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.document">window.document</a></dt>
 <dd>Returns a reference to the document that the window contains.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.frameElement">window.frameElement</a></dt>
 <dd>Returns the element in which the window is embedded, or null if the window is not embedded.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.frames">window.frames</a></dt>
 <dd>Returns an array of the subframes in the current window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.history">window.history</a></dt>
 <dd>Returns a reference to the history object.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.innerHeight">window.innerHeight</a></dt>
 <dd>Gets the height of the content area of the browser window including, if rendered, the horizontal scrollbar.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.innerWidth">window.innerWidth</a></dt>
 <dd>Gets the width of the content area of the browser window including, if rendered, the vertical scrollbar.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.length">window.length</a></dt>
 <dd>Returns the number of frames in the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.location">window.location</a></dt>
 <dd>Gets/sets the location, or current URL, of the window object.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.locationbar">window.locationbar</a></dt>
 <dd>Returns the locationbar object, whose visibility can be toggled in the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.menubar">window.menubar</a></dt>
 <dd>Returns the menubar object, whose visibility can be toggled in the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.name">window.name</a></dt>
 <dd>Gets/sets the name of the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator">window.navigator</a></dt>
 <dd>Returns a reference to the navigator object.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.appCodeName">window.navigator.appCodeName</a></dt>
 <dd>Returns the internal "code" name of the current browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.appName">window.navigator.appName</a></dt>
 <dd>Returns the official name of the browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.appVersion">window.navigator.appVersion</a></dt>
 <dd>Returns the version of the browser as a string.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.cookieEnabled">window.navigator.cookieEnabled</a></dt>
 <dd>Returns a boolean indicating whether cookies are enabled in the browser or not.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.javaEnabled">window.navigator.javaEnabled()</a></dt>
 <dd>Indicates whether Java is enabled in the host browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.language">window.navigator.language</a></dt>
 <dd>Returns a string representing the language version of the browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.mimeTypes">window.navigator.mimeTypes</a></dt>
 <dd>Returns a list of the MIME types supported by the browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.oscpu">window.navigator.oscpu</a></dt>
 <dd>Returns a string that represents the current operating system.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.platform">window.navigator.platform</a></dt>
 <dd>Returns a string representing the platform of the browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.plugins">window.navigator.plugins</a></dt>
 <dd>Returns an array of the plugins installed in the browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.product">window.navigator.product</a></dt>
 <dd>Returns the product name of the browser (e.g. "Gecko").</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.productSub">window.navigator.productSub</a></dt>
 <dd>Returns the product version number (e.g. "5.0").</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.userAgent">window.navigator.userAgent</a></dt>
 <dd>Returns the user agent string for the current browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.vendor">window.navigator.vendor</a></dt>
 <dd>Returns the vendor name of the current browser (e.g. "Netscape6").</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.navigator.vendorSub">window.navigator.vendorSub</a></dt>
 <dd>Returns the vendor version number (e.g. "6.1").</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.opener">window.opener</a></dt>
 <dd>Returns a reference to the window that opened this current window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.outerHeight">window.outerHeight</a></dt>
 <dd>Gets the height of the outside of the browser window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.outerWidth">window.outerWidth</a></dt>
 <dd>Gets the width of the outside of the browser window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.pageXOffset">window.pageXOffset</a></dt>
 <dd>Gets the amount of content that has been hidden by scrolling to the right.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.pageYOffset">window.pageYOffset</a></dt>
 <dd>Gets the amount of content that has been hidden by scrolling down.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.parent">window.parent</a></dt>
 <dd>Returns a reference to the parent of the current window or subframe.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.personalbar">window.personalbar</a></dt>
 <dd>Returns the personalbar object, whose visibility can be toggled in the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.pkcs11">window.pkcs11</a></dt>
 <dd>Returns the pkcs11 object, which can be used to install drivers and other software associated with the pkcs11 protocol.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.prompter">window.prompter</a></dt>
 <dd>Returns a reference to the prompt window, if any, currently displayed.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen">window.screen</a></dt>
 <dd>Returns a reference to the screen object associated with the window.</dd>
</dl>

<p><span class="comment">The following is duplicated on DOM:window.screen</span></p>

<dl>
 <dt><a href="it/DOM/window.screen.availTop">window.screen.availTop</a></dt>
 <dd>Specifies the y-coordinate of the first pixel that is not allocated to permanent or semipermanent user interface features.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.availLeft">window.screen.availLeft</a></dt>
 <dd>Returns the first available pixel available from the left side of the screen.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.availHeight">window.screen.availHeight</a></dt>
 <dd>Specifies the height of the screen, in pixels, minus permanent or semipermanent user interface features displayed by the operating system, such as the Taskbar on Windows.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.availWidth">window.screen.availWidth</a></dt>
 <dd>Returns the amount of horizontal space in pixels available to the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.colorDepth">window.screen.colorDepth</a></dt>
 <dd>Returns the color depth of the screen.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.height">window.screen.height</a></dt>
 <dd>Returns the height of the screen in pixels.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.left">window.screen.left</a></dt>
 <dd>Gets/sets the current distance in pixels from the left side of the screen.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.pixelDepth">window.screen.pixelDepth</a></dt>
 <dd>Gets the bit depth of the screen.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.top">window.screen.top</a></dt>
 <dd>Gets/sets the distance from the top of the screen.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screen.width">window.screen.width</a></dt>
 <dd>Returns the width of the screen.</dd>
</dl>

<p><span class="comment">end of duplicated content</span></p>

<dl>
 <dt><a href="it/DOM/window.screenX">window.screenX</a></dt>
 <dd>Returns the horizontal distance of the left border of the user's browser from the left side of the screen.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.screenY">window.screenY</a></dt>
 <dd>Returns the vertical distance of the top border of the user's browser from the top side of the screen.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollbars">window.scrollbars</a></dt>
 <dd>Returns the scrollbars object, whose visibility can be toggled in the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollMaxX">window.scrollMaxX</a></dt>
 <dd>The maximum offset that the window can be scrolled to horizontally.</dd>
 <dd>(i.e., the document width minus the viewport width)</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollMaxY">window.scrollMaxY</a></dt>
 <dd>The maximum offset that the window can be scrolled to vertically.</dd>
 <dd>(i.e., the document height minus the viewport height)</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollX">window.scrollX</a></dt>
 <dd>Returns the number of pixels that the document has already been scrolled horizontally.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollY">window.scrollY</a></dt>
 <dd>Returns the number of pixels that the document has already been scrolled vertically.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.self">window.self</a></dt>
 <dd>Returns an object reference to the window object itself.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.sidebar">window.sidebar</a></dt>
 <dd>Returns a reference to the window object of the sidebar.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.status">window.status</a></dt>
 <dd>Gets/sets the text in the statusbar at the bottom of the browser.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.statusbar">window.statusbar</a></dt>
 <dd>Returns the statusbar object, whose visibility can be toggled in the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.toolbar">window.toolbar</a></dt>
 <dd>Returns the toolbar object, whose visibility can be toggled in the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.top">window.top</a></dt>
 <dd>Returns a reference to the topmost window in the window hierarchy.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.window">window.window</a></dt>
 <dd>Returns a reference to the current window.</dd>
</dl>

<h3 id="Metodi" name="Metodi">Metodi</h3>

<dl>
 <dt><a href="it/DOM/window.alert">window.alert</a></dt>
 <dd>Displays an alert dialog.</dd>
</dl>

<p><span class="comment">base64 func <a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=287112" rel="freelink">https://bugzilla.mozilla.org/show_bug.cgi?id=287112</a> (see last comments) <a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=123003" rel="freelink">https://bugzilla.mozilla.org/show_bug.cgi?id=123003</a> <a class="external" href="http://lxr.mozilla.org/seamonkey/source/dom/src/base/nsGlobalWindow.cpp#4946" rel="freelink">http://lxr.mozilla.org/seamonkey/sou...indow.cpp#4946</a></span></p>

<dl>
 <dt><a href="it/DOM/window.atob">window.atob</a></dt>
 <dd>Decodes a string of data which has been encoded using base-64 encoding.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.back">window.back</a></dt>
 <dd>Moves back one in the window history.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.blur">window.blur</a></dt>
 <dd>Sets focus away from the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.btoa">window.btoa</a></dt>
 <dd>Creates a base-64 encoded ASCII string from a string of binary data.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.captureEvents">window.captureEvents</a> {{ Obsolete_inline() }}</dt>
 <dd>Registers the window to capture all events of the specified type.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.clearInterval">window.clearInterval</a></dt>
 <dd>Cancels the repeated execution set using <code>setInterval</code>.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.clearTimeout">window.clearTimeout</a></dt>
 <dd>Clears a delay that's been set for a specific function.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.close">window.close</a></dt>
 <dd>Closes the current window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.confirm">window.confirm</a></dt>
 <dd>Displays a dialog with a message that the user needs to respond to.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.dump">window.dump</a></dt>
 <dd>Writes a message to the console.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.escape">window.escape</a></dt>
 <dd>Encodes a string.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.focus">window.focus</a></dt>
 <dd>Sets focus on the current window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.forward">window.forward</a></dt>
 <dd>Moves the window one document forward in the history.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.getAttention">window.getAttention</a></dt>
 <dd>Flashes the application icon.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.getComputedStyle">window.getComputedStyle</a></dt>
 <dd>Gets computed style for the specified element. Computed style indicates the computed values of all CSS properties of the element.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.getSelection">window.getSelection</a></dt>
 <dd>Returns the selection object representing the selected item(s).</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.home">window.home</a></dt>
 <dd>Returns the browser to the home page.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.moveBy">window.moveBy</a></dt>
 <dd>Moves the current window by a specified amount.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.moveTo">window.moveTo</a></dt>
 <dd>Moves the window to the specified coordinates.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.open">window.open</a></dt>
 <dd>Opens a new window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.openDialog">window.openDialog</a></dt>
 <dd>Opens a new dialog window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.print">window.print</a></dt>
 <dd>Prints the current document.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.prompt">window.prompt</a></dt>
 <dd>Returns the text entered by the user in a prompt dialog.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.releaseEvents">window.releaseEvents</a> {{ Obsolete_inline() }}</dt>
 <dd>Releases the window from trapping events of a specific type.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.resizeBy">window.resizeBy</a></dt>
 <dd>Resizes the current window by a certain amount.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.resizeTo">window.resizeTo</a></dt>
 <dd>Dynamically resizes window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scroll">window.scroll</a></dt>
 <dd>Scrolls the window to a particular place in the document.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollBy">window.scrollBy</a></dt>
 <dd>Scrolls the document in the window by the given amount.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollByLines">window.scrollByLines</a></dt>
 <dd>Scrolls the document by the given number of lines.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollByPages">window.scrollByPages</a></dt>
 <dd>Scrolls the current document by the specified number of pages.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.scrollTo">window.scrollTo</a></dt>
 <dd>Scrolls to a particular set of coordinates in the document.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.setInterval">window.setInterval</a></dt>
 <dd>Execute a function each X milliseconds.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.setTimeout">window.setTimeout</a></dt>
 <dd>Sets a delay for executing a function.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.sizeToContent">window.sizeToContent</a></dt>
 <dd>Sizes the window according to its content.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.stop">window.stop</a></dt>
 <dd>This method stops window loading.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.unescape">window.unescape</a></dt>
 <dd>Unencodes a value that has been encoded in hexadecimal (e.g. a cookie).</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.updateCommands">window.updateCommands</a></dt>
</dl>

<h3 id="Gestori_di_Eventi" name="Gestori_di_Eventi">Gestori di Eventi</h3>

<dl>
 <dt><a href="it/DOM/window.onabort">window.onabort</a></dt>
 <dd>An event handler property for abort events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onblur">window.onblur</a></dt>
 <dd>An event handler property for blur events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onchange">window.onchange</a></dt>
 <dd>An event handler property for change events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onclick">window.onclick</a></dt>
 <dd>An event handler property for click events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onclose">window.onclose</a></dt>
 <dd>An event handler property for handling the window close event.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.ondragdrop">window.ondragdrop</a></dt>
 <dd>An event handler property for drag and drop events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onerror">window.onerror</a></dt>
 <dd>An event handler property for errors raised on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onfocus">window.onfocus</a></dt>
 <dd>An event handler property for focus events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onkeydown">window.onkeydown</a></dt>
 <dd>An event handler property for keydown events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onkeypress">window.onkeypress</a></dt>
 <dd>An event handler property for keypress events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onkeyup">window.onkeyup</a></dt>
 <dd>An event handler property for keyup events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onload">window.onload</a></dt>
 <dd>An event handler property for window loading.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onmousedown">window.onmousedown</a></dt>
 <dd>An event handler property for mousedown events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onmousemove">window.onmousemove</a></dt>
 <dd>An event handler property for mousemove events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onmouseout">window.onmouseout</a></dt>
 <dd>An event handler property for mouseout events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onmouseover">window.onmouseover</a></dt>
 <dd>An event handler property for mouseover events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onmouseup">window.onmouseup</a></dt>
 <dd>An event handler property for mouseup events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onpaint">window.onpaint</a></dt>
 <dd>An event handler property for paint events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onreset">window.onreset</a></dt>
 <dd>An event handler property for reset events on the window.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onresize">window.onresize</a></dt>
 <dd>An event handler property for window resizing.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onscroll">window.onscroll</a></dt>
 <dd>An event handler property for window scrolling.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onselect">window.onselect</a></dt>
 <dd>An event handler property for window selection.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onsubmit">window.onsubmit</a></dt>
 <dd>An event handler property for submits on window forms.</dd>
</dl>

<dl>
 <dt><a href="it/DOM/window.onunload">window.onunload</a></dt>
 <dd>An event handler property for unload events on the window.</dd>
</dl>

<p>{{ languages( { "fr": "fr/DOM/window", "pl": "pl/DOM/window", "en": "en/DOM/window" } ) }}</p>