July 1998
Intermediate to advanced
1456 pages
65h 5m
English
type — NN 4 IE 4 DOM n/a
Read-only
The type of the current event (without the “on” prefix). Values are all lowercase.
// NN
if (evtObj.type == "change") {
...
}
// IE
if (event.type == "change") {
...
}Any event name (without the “on” prefix) as a string.
None.
Read now
Unlock full access