Sets or retrieves the x-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.
Sets or retrieves the y-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.
Sets or retrieves the y-coordinate, in pixels, of the mouse pointer's position relative to a relatively positioned parent element.
Remarks
Creating custom code for cutting requires several steps:
Set event.returnValue=false in the onbeforecut event to enable the Cut shortcut menu item.
Specify a data format in which to transfer the selection through the setData method of the clipboardData object.
Invoke the setData method in the oncut event.
Set event.returnValue=false in the oncut event handler to cancel the default action. The default action must be canceled to sucessfully use the setData method. Web authors can use the innerHTML property or the createRange method to perform the cut operation once the event is cancelled.
Standards Information
There is no public standard that applies to this event.