My main page has two frame. How can I make it so everytime I click on frm_Right, it shifts the focus to a textbox in frm_Left?
I tried this already.Code:<frameset cols="10%,*"> <frame src="Left.html" name="frm_Left" FRAMEBORDER="No"> <frame src="Right.html" name="frm_Right" FRAMEBORDER="No"> </frameset>
<BODY OnFocus="parent.frm_Left.txtBox.select();">
Thanks




Reply With Quote