Is it possible to submit an entire dom object, values included? Assuming I have something like that:
<input type="text" name="name" id="name"
value=""/>
Once the user enters it's name (for example, "my name", I'd like to receive the entire DOM object. so on the server I'll get
<input type="text" name="name" id="name"
value="**My Name**"/>
I'm aware I can send the entire innerHTML but that doesn't provide me the values the user entered.