/    Sign up×
Community /Pin to ProfileBookmark

Internal link in javascript

I’m trying to get a dropdown box to act as an internal link selector…
Here is my code :

<form>
<select name=”menu”>
<option value=”Doc”> Doc</option>
<option value=”Flash”> Flash</option>
</select>
<input name=”link to” type=”button”>
</form>

<br><br><br><br><br><br>
<a name=”Documents”>Doc section</a>
<br><br><br><br><br><br>
<a name=”Flash”>Flash section</a>

I’d like to select my destination inside the page with the dropdown menu and the button…How can i get this to work ?
Thank you

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@RobsonauthorFeb 03.2003 — Would you give me more info about that please ? Do you have an url I could visit ?

Thanks for the concern
Copy linkTweet thisAlerts:
@pyroFeb 03.2003 — This code will get you started.

&lt;html&gt;
&lt;head&gt;
&lt;script type="text/javascript"&gt;
function pulldown(form)
{
var URL = form.menu.options.value;
window.location=URL;
}
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form name=form&gt;
&lt;select name=menu SIZE=1 onChange="pulldown(this.form)"&gt;
&lt;option value="#"&gt;Go to....&lt;/option&gt;
&lt;option value="http://www.yahoo.com"&gt;Yahoo&lt;/option&gt;
&lt;/select&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;
Copy linkTweet thisAlerts:
@pyroFeb 04.2003 — Just out of curiosity...Why would that be better?
×

Success!

Help @Robson spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,
)...