[ Simply close the demo window to return to this page. ]
JavaScript Forms: Меню прохода (в структурах) <!-- THREE STEPS TO INSTALL PASS MENU (IN FRAMES): 1. Copy the entire first code section into your FRAMESET document 2. Save the second code into a new page, pass-menu-framesl.html 2. Paste the second code into a new page, pass-menu-framesr.html --> <!-- STEP ONE: Paste this entire code into your FRAMESET page --> <html> <head> <script language="JavaScript"> <! > <! > <!-- Begin function passText(str) { top.frames['right'].document.yourform.msg.value = str; } // End --> </script> </head> <frameset cols="300,*" frameborder=1> <frame name="left" src="pass-menu-framesl.html"> <frame name="right" src="pass-menu-framesr.html"> </frameset> </form> </body> </html> <!-- STEP TWO: Copy this code into a new page --> <!-- Save the page as: pass-menu-framesl.html --> <html> <body> <center> <form name=myform> Select an Option:<br> <select name="site" size=1> <option value="">Go to.... <option value="http://javascriptlist.narod.ru">Список Яваскриптов <option value="http://javascripts-do.narod.ru">Яваскрипты <option value="http://phplist.narod.ru">Язык php <option value="http://segaobzor.narod.ru">Игры(ромы) сега <option value="http://javalist.narod.ru">Явский список <option value="http://ahgames.narod.ru">Игры </select> <input type=button value="Ok!" onClick="parent.passText(this.form.site.options[this.form.site.selectedIndex].value);"> </form> </center> </body> </html> <!-- STEP THREE: Copy this code into a new page --> <!-- Save the page as: pass-menu-framesr.html --> <html> <body> <form name=yourform> <input type=text name=msg size=35 value=""> </form> </body> </html> <p><center> <font face="arial, helvetica" SIZE="-2">Free JavaScripts<br> by <a href="http://javascripts-do.narod.ru">JavaScript</a></font> </center><p> <!-- Script Size: 1.42 KB -->