| |
jsEventBeforeUnload | The event is triggered before unloading the page.
Remark: You can allow the Web user to exit from the page by using the code:
JSInfoEvent("returnValue") = "Message" RESULT "Message"
The browser will display the message with the "Exit from the page" and "Stay on the page" buttons (or a variation according to the browser used). |
jsEventBlur | The event is triggered when the target object loses focus. |
jsEventChange | The event is triggered whenever the target object is modified. |
jsEventClick | The event is triggered by a click on the target object. |
jsEventDoubleClick | The event is triggered by a double click on the target object. |
jsEventFocus | The event is triggered when the target object takes focus. |
jsEventGestureChange | The event is triggered when the user changes the zoom of screen with his fingers (event managed during a display on a phone for example). |
jsEventGestureEnd | The event is triggered when the user stops the zoom of screen with his fingers (event managed during the display on a phone for example). |
jsEventGestureStart | The event is triggered when the user starts the zoom of screen with 2 fingers (event managed during a display on a phone for example). |
jsEventKeyDown | The event is triggered when a key is pressed. |
jsEventKeyPress | The event is triggered when a key is pressed and released. |
jsEventKeyUp | The event is triggered when a key is released. |
jsEventLoad | The event is triggered at the end of load of HTML form. |
jsEventMouseDown | The event is triggered when a mouse button is pressed. |
jsEventMouseEnter | The event is triggered when the mouse cursor enters the surface of target object. This event affects the target object only. |
jsEventMouseLeave | The event is triggered when the mouse cursor leaves the surface of target object. This event affects the target object only. |
jsEventMouseMove | The event is triggered whenever the mouse is moved. |
jsEventMouseOut | The event is triggered when the mouse cursor leaves the surface of target object. This event affects the target object or one of its children. |
jsEventMouseOver | The event is triggered when the mouse cursor enters the surface of target object. This event affects the target object or one of its children. |
jsEventMouseUp | The event is triggered when a mouse button is released. |
jsEventOrientationChange | The event is triggered when the device orientation changes (event managed during a display on a phone for example). |
jsEventTouchCancel | The event is triggered when the user cancels the action performed with his finger: displaying the popup menu for example (event managed during a display on a phone for example). |
jsEventTouchEnd | The event is triggered when the user removes his finger from the screen to end an action on the screen (event managed during a display on a phone for example). |
jsEventTouchMove | The event is triggered when the user moves his finger on the screen (event managed during a display on a phone for example). |
jsEventTouchStart | The event is triggered when the user touches the screen with one or 2 fingers (event managed during a display on a phone for example). |
jsEventReset | The event is triggered during a click on a "Reset" button. |
jsEventResize | The event is triggered when the window is resized. |
jsEventScroll | The event is triggered whenever the browser window is scrolled. |
jsEventSelect | The event is triggered when selecting the target object. |
jsEventSubmit | The event is triggered during a click on a "Submit" button. |
jsEventUnload | The event is triggered when unloading the HTML form (closing the browser or navigating toward another page). |