Если у вас есть HTML
<form name="formname" .... id="form-first">
<iframe id="one" src="iframe2.html">
</iframe>
</form>
и JavaScript
function iframeRef( frameRef ) {
return frameRef.contentWindow
? frameRef.contentWindow.document
: frameRef.contentDocument
}
var inside = iframeRef( document.getElementById('one') )
inside
теперь является ссылкой на документ, так что вы можете делать getElementsByTagName('textarea')
и все, что захотите, в зависимости от того, что находится внутри iframe src.