When I use jquery find() to get elements, it will return a collection of objects.
So, basically I run:
$("#eventlist").find("span")
Now if I run:
$("#eventlist").find("span").html()
It returns the html of just the first element in the object.
When I try
JSON.stringify($("#eventlist").find("span"))
I get an error: DOMException: Failed to read the 'selectionDirection' property from 'HTMLInputElement':
My question is, how could I get all elements in one big html string?