onnoupdate event
Event handler provided to indicate that the manifest has not changed.
Syntax
HTML Attribute | <element onnoupdate = "handler(event)"> |
Event Property | object.onnoupdate = handler; |
addEventListener Method | object.addEventListener("noupdate", handler, useCapture) |
Event handler parameters
handler [in]
Type: FunctionEvent handler
Remarks
If there is more than one event, the noupdate event will be the last one in the sequence.
Alternatively, you could use an anonymous delegate function such as
object.onnoupdate = function (e) { … }
where e is the cached event.