I am trying to develop a system that enables the users to manually resize a textarea and iframe. I have illustrated what I mean bellow:
<body>
<table width="100%">
<tr>
<!-- basically I want the user to be able to manually resize the width of the <td>'s -->
<td width="30%">
<textarea style="width:100%; height:100%;"></textarea>
</td>
<td width="70%">
<iframe style="width:100%; height:100%;" src=""></iframe>
</td>
</tr>
</table>
</body>
Any help would be highly appreciated, thanks :)