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 pasting requires several steps:
Set event.returnValue=false in the onbeforepaste event to enable the Paste shortcut menu item.
Cancel the default behavior of the browser by including event.returnValue=false in the onpaste event handler. This guideline applies only to objects, such as the text box, that have a defined default behavior.
Specify a data format in which to paste the selection through the getData method of the clipboardData object.
Invoke the getData method in the onpaste event to execute custom code for pasting.
Standards Information
There is no public standard that applies to this event.