is there a way to get the outerHTML of the element TABLE using ID attributes?
Example HTML:
<html>
<head></head>
<body>
<table id="mytable">
<tr>
<td>Some Data</td>
</tr>
</table>
</body>
</html>