How to stringify event object?

You won’t be able to serialize an event object with JSON.stringify, because an event object contains references to DOM nodes, and the DOM has circular references all over the place (e.g. child/parent relationships). JSON can’t handle these by default, so you’re a bit out of luck there.

I’d suggest to look at How to serialize DOM node to JSON even if there are circular references? which has a few suggestions on how to serialize a DOM node. Also, the following questions seem to have useful information:

JSON libraries able to handle circular references seem to be

Alternatively, you could delete all references to DOM nodes if you don’t need them, and then serialize the object. You shouldn’t do this after all. See @PointedEars comment 🙂

Leave a Comment