![]() |
|
| |||||||
| Notices |
| Hyperlinking - Making it all come together Discussion and help related to linking your pages together with hyperlinks, standard navigation menubars, linking images, dynamic menus and Go menus. |
![]() |
| | LinkBack | Thread Tools |
|
#1
| |||
| |||
|
I'm trying to create a GoMenu that heads to a Iframe in the page, but the GoMenu properties don't include the target option. I thought to Edit HTML and add the target with "inside tag", but I don't understand how to adding the text in the right position of the HTML code; BlueVoda always writes before the first > the present in the HTML code.
|
|
#2
| |||
| |||
|
Is what I'm trying to do! Here the GoTo Html: where (**) is the place where I would put the Target and (*) is the place where BlueVoda->Edit->HTML->Inside Tag-> write the code. <FORM name="GoMenuForm9" action=""(*)> <SELECT name="GoMenu" onchange="OnGoMenuForm9Link()" style="width:589px"> <OPTION selected>Seleziona un argomento</OPTION> <OPTION value="autotelaio.html"(**)>Autotelaio</OPTION> <OPTION value="scocca.html"(**)>Scocca</OPTION> <OPTION value="partimobili.html"(**)>Parti Mobili</OPTION> <OPTION value="finiz-int.html"(**)>Finizioni Interne</OPTION> <OPTION value="finiz-est.html"(**)>Finizioni Esterne</OPTION> <OPTION value="stampi.html"(**)>Stampi e Prototipi</OPTION> <OPTION value="it-soft.html"(**)>Software</OPTION> <OPTION value="consulenze.html"(**)>Consulenze</OPTION> </SELECT> </FORM> etc... etc... |
|
#3
| ||||
| ||||
| Quote:
http://www.yoursite.com/pagename.html type in: http:/www.yoursite.com/pagename.html" target "famename" and you're done. Attention to the position of the "" and the spaces
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#5
| ||||
| ||||
| Quote:
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#7
| ||||
| ||||
|
Hi radek, As it is you can't do much. The solution is as follows: Open your page. Move your Go menu, at the very top left corner of the page. Right click on it and go to Object html. Copy the code that will look like: <FORM name="GoMenuForm2" action=""> <SELECT name="GoMenu" style="width:119px"> <OPTION selected>Select a link</OPTION> <OPTION value="http://www.yoursite.com/page_in_the_frame1.html>option1</OPTION> <OPTION value=http://www.yoursite.com/page_in_the_frame2.html>option2</OPTION> </SELECT> <INPUT type="button" value="Go" onclick="OnGoMenuForm2Link()"> </FORM> <SCRIPT language="JavaScript" type="text/javascript"> function OnGoMenuForm2Link() { var url = document.GoMenuForm2.GoMenu.options[document.GoMenuForm2.GoMenu.selectedIndex].value +""; if (url != '') { if(parent != self) { var doc = self; while(doc != window.top) { doc = doc.parent; } if(url.indexOf("://")!=-1) { doc.body.window.location.href = url; } else { window.framename.location.href = url; } } else { window.framename.location.href = url; } document.GoMenuForm2.GoMenu.selectedIndex=0; } } </SCRIPT> Replace the blue text (which is originally "top") with the name of your frame, here called "framename". Insert a HTML box. Double click it to edit it, and paste in the html box the code you have copied.This will create a new Go menu in your page, with the links you have originaly given it, but now it will open the linked page in the iframe. Delete the original Go menu. You're done! Please feel free to try it at http://www.navaldesign.info/Tips/goinframe.html The reason that i told you to move the Go menu in the upper left corner, is that in this way you obtain top and left margins 0. So now you can move the html box anywhere in your page. The whole procedure takes 3 minutes but you obtain a result that cannot be done directly in BV. If you need help post again. You gave me a good idea for the nest Tip in the Tips and Tricks section of the forum. Thanks!
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#9
| ||||
| ||||
| Quote:
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#10
| |||
| |||
|
Hello, I am experiencing major frustration linking a jump menu to an iframe on the same page. I have my iframe linked to another page I made which is an extensive glossary. When you look at the page with the iframe in it you can scroll through the glossary in the iframe. So that works. Where I am getting hung up is tring to link the jump menu ive created to the iframe to target the anchors with in the iframe that I have placed for each letter (i.e A= all terms beginning with A B= all terms beginning with B.) I want to link the jump menu to the iframe anchors so when you select a letter (i.e-A) from the jump menu it will scroll in the glossary inside the iframe on the same page... not open another window. I am lost and any help would be great!!!!! BTW- if it matters I use Dreamweaver Thanks John |
|
#11
| |||
| |||
|
you just need to change one thing in the code: <input name="go_button" type="button" class="Estilo3" id= "go_button" onclick="MM_jumpMenuGo('paises','info',1)" value="Go" / where ir says "info" you should put the name of the iframe |