Looking for a way to allow users to manually resize a textarea and iframe in a system I am developing. Here's an example of what I mean:
<body>
<table width="100%">
<tr>
<!-- I want the user to be able to resize the width of the <td>'s manually -->
<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>
Would appreciate any assistance, thank you :)