Hi
I want to get the innerHTML of an element that may have been changed by the user.
So, for example, I want to know the state of a radio button:
<input type="radio" name="Q_209" value="A" checked>
or
<input type="radio" name="Q_209" value="A">
In modern browsers, innerHTML just gives the original tag when the page was loaded (as discussed at length here): it doesn't record whether the radio button has been checked by the user or not.
Is there any safe way to get the updated HTML? I know that there are ways to get the state of the radio button itself in Javascript, but what I would like is the full, updated HTML.
Thanks!