How to get the size of an HTML element in bytes using javascript?
I have a list that represents a conversation
<ul>
<li>hello</li>
<li>how are you?</li>
<li>fine thanks</li>
<li>nice to meet you</li>
<li>nice to mmet you too</li>
</ul>
And I want to save that conversation to localStorage, but localStorage limit is 5MB in chrome, so I need to know the size in bytes for the list to do some validations.