The line JSON.stringify( $("p") );
causes an error:
InvalidStateError: Failed to read the 'selectionDirection' property from 'HTMLInputElement': The input element's type ('button') does not support selection.
(I'm using Google Chrome 34)
Why?
How else should I make $("p")
more portable so I can store it or pass it in a message?
The line JSON.stringify( $("p") );
causes an error:
InvalidStateError: Failed to read the 'selectionDirection' property from 'HTMLInputElement': The input element's type ('button') does not support selection.
(I'm using Google Chrome 34)
Why?
How else should I make $("p")
more portable so I can store it or pass it in a message?
- why do you want to stringify an object? What is the purpose? You should be storing watever you need in a json object and stringify that instead right? – madi Commented Apr 15, 2014 at 1:39
-
2
Why oh why would you want to store a jQuery selection set of DOM elements or make it portable in the first place? What is in those
p
s? – Benjamin Gruenbaum Commented Apr 15, 2014 at 1:39 -
What is the actual context for the question? It is hard to see how passing the results of a jQuery selector would ever need to be passed in a message. Unless you just need the HTML, in which case wouldn't
$('p').html()
be sufficient? – GregL Commented Apr 15, 2014 at 1:39 - 1 @jonS90 how about using the ID of the element? (or setting a UID if there is none) – Petah Commented Apr 15, 2014 at 2:05
-
1
@jonS90
if (!$('foo').attr('id')) { $('foo').attr('id', 'uid-' + Math.random()); }
– Petah Commented Apr 15, 2014 at 2:08
1 Answer
Reset to default 9There's a ton of state (attributes, event handlers, the code related to those, internal state, ...) involved in an HTML element. It just doesn't make sense to serialize all of that into JSON.
If you want to get some kind of representation of the element in JSON, you could for instance use .html()
to get a HTML string representing the element. Or e up with a format that encodes, for instance, tag names, attributes and text only. You could have to implement that by hand though (or find a library - "html to json" could be a good keyword)