Can you please help me to convert documentFragment object to JSON format? I need it to send documentFragment in message to iframe. This is my code:
var range = window.getSelection().getRangeAt(0);
var fragment = range.cloneContents();
console.log(JSON.stringify(fragment));
But it is not working (outputs empty object {} ).