W3cubDocs

/DOM

DOMPointReadOnly.toJSON

The DOMPointReadOnly method toJSON() returns a DOMPointInit object giving the JSON form of the point object.

Syntax

pointJSON = DOMPointReadOnly.toJSON();

Parameters

None.

Return value

A new DOMPointInit object whose properties are set to the values in the DOMPoint or DOMPointReadOnly on which the method was called.

Example

This example creates a DOMPoint object representing the top-left corner of the current window, in screen coordinates, then converts that to JSON.

var topLeft = new DOMPoint(window.screenX, window.screenY);

var pointJSON = topLeft.toJSON();

Specifications

Specification Status Comment
Geometry Interfaces Module Level 1
The definition of 'DOMPointReadOnly.toJSON()' in that specification.
Candidate Recommendation Initial definition

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 61 No 31 No 48 No
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 61 61 No 31 48 No ?

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DOMPointReadOnly/toJSON