Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > BlueVoda Website Builder Forums > Hyperlinking - Making it all come together

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.

Reply
 
LinkBack Thread Tools
  #1  
Old 02-08-2006, 02:01 PM
Private First Class
 
Join Date: Feb 2006
Posts: 6
Default Go Menu target IFrame

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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 02-08-2006, 03:36 PM
Private First Class
 
Join Date: Feb 2006
Posts: 6
Exclamation Re: Go Menu target IFrame

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...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 02-08-2006, 03:40 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,352
Default Re: Go Menu target IFrame

Quote:
Originally Posted by radek
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.
You can do it directly when entering the Go menu URLs: instead of typing for the link:

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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 02-08-2006, 04:12 PM
Private First Class
 
Join Date: Feb 2006
Posts: 6
Default Re: Go Menu target IFrame

Tank you! but it diden't work it open the link like a _self
Is possible that my error is the Go menu and the IFrame must be linked in a Form Layout?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 02-08-2006, 05:02 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,352
Default Re: Go Menu target IFrame

Quote:
Originally Posted by radek
Tank you! but it diden't work it open the link like a _self
Is possible that my error is the Go menu and the IFrame must be linked in a Form Layout?
No, you're right. I tried it but it doesn't work as i thought it should. I'll try it again and if i get results i'll let you know. your other option is to replace the Go menu with image or button links, like in http://www.vodahost.com/vodatalk/blu...een-pages.html
__________________
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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old 02-08-2006, 05:33 PM
Private First Class
 
Join Date: Feb 2006
Posts: 6
Default Re: Go Menu target IFrame

Tank you! I suggest you to have a look at the javascript incude in Go menu, i think that the problem is there.
See you tomorrow, bye!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old 02-08-2006, 08:37 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,352
Default Re: Go Menu target IFrame

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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old 02-09-2006, 12:25 PM
Private First Class
 
Join Date: Feb 2006
Posts: 6
Default Re: Go Menu target IFrame

Tank you very much! I have some little problem yet, but it work!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old 02-09-2006, 12:33 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,352
Default Re: Go Menu target IFrame

Quote:
Originally Posted by radek
Tank you very much! I have some little problem yet, but it work!
Go to the Tips and Trics section. I've posted there to. There is a small piece ot trick also to make your life easier in positioning the html box in the wright place
__________________
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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old 05-04-2007, 10:13 PM
Private
 
Join Date: May 2007
Posts: 1
Default Re: Go Menu target IFrame

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old 09-23-2008, 11:26 PM
Private
 
Join Date: Sep 2008
Posts: 1
Default Re: Go Menu target IFrame

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +1. The time now is 01:48 AM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176