Please help import value in iframe To the home page.
Example
- htm
<html dir="rtl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>am</title>
</head>
<script>
function ok() {
}
</script>
<body>
<p align="center">
<iframe id="mm" src="2.htm" style="width:373px;height:84px;overflow:scroll" >
</iframe>
</p>
<p align="center">Import value from Page 2 here </p>
<p align="center"><input type="text" name="T1" size="20"></p>
<p align="center">
<input type="submit" value="Import value from page 2" name="send1" onclick="ok(this)" style="font-size: 14pt"></p>
</body>
</html>
- htm
<html dir="rtl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>am</title>
</head>
<body>
<p align="center"><input type="text" name="T1" size="20" value="Hi"></p>
</body>
</html>