Writing the dom content to a new html file
Hi,
I would like to write the content of the dom to a file or string. For example:
input html:
<html>
<body>
Name:
<input id='name'/>
</body>
</html>
When viewing this html in IE, type 'test' in the inputbox. Now i would like to generate html like this:
<html>
<body>
Name:
<input id='name' value='test'/>
</body>
</html>
I hope the problem is clear.
Thanks, Perry

