Grum em qez amboghj code-@, vor@ im mot ashxatuma
index.html
---------
Code:
<frameset rows="50%,*">
<frame name="frame1" src="a.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
<frame name="frame2" src="b.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
</frameset>
---------
a.html
---------
Code:
<form name=lialia>
<input type=text name=kuku>
</form>
---------
b.html
---------
Code:
<script language="JavaScript">
function a(){
parent.frames.frame1.document.lialia.kuku.focus();
}
</script>
<a href="#" onclick="a();">Click Here</a>
---------