Looking 4 a java script that will .........

  • Thread starter Thread starter Johny
  • Start date Start date
J

Johny

Hi

I'm lookin for a script that will allow me to have a box on my site that if
a name is typed in it will take you to that page, ie

if you typed billy-bob into the box and clicked go it would take you to
www.mydomain.com/billy-bob.html

This might seem a strange way of doing things but i have my reasons.

Hope somebody can help

Thanks
John
 
Do a search for JavaScript Password scripts, one may still be available, as this was done back in
1996 - 1999.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Hi Johny,

Try...
Switch to HTML view and add this code to your page.

<form >
<input type="text" name="T1" size="20">
<input type="button" value="Button" name="B1"
onclick="document.location.href = T1.value + '.htm'">
</form>

Don
===================
| Hi
|
| I'm lookin for a script that will allow me to have a box on my site that
if
| a name is typed in it will take you to that page, ie
|
| if you typed billy-bob into the box and clicked go it would take you to
| www.mydomain.com/billy-bob.html
|
| This might seem a strange way of doing things but i have my reasons.
|
| Hope somebody can help
|
| Thanks
| John
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top