Brigitte
12-30-2002, 02:44 AM
i am an amature at using html. i am designing a web site and would like a drop down list where, when u select an option from the list, it opens the corresponding page.
|
Click to See Complete Forum and Search --> : Need help using HTML Brigitte 12-30-2002, 02:44 AM i am an amature at using html. i am designing a web site and would like a drop down list where, when u select an option from the list, it opens the corresponding page. Charles 12-30-2002, 05:15 AM <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Example</title> <form action="link.pl"> <div> <select name="url"> <option value="http://www.w3.org/TR/REC-html32">HTML 3.2</option> <option value="http://www.w3.org/TR/html4/">HTML 4.01</option> </select> <input type="submit" value="Darling, you send me."> </div> </form> And then get something like the following named 'link.pl' and up and running on the server: #!usr/local/bin/perl use CGI qw(redirect param); print redirect param 'url'; Charles 12-30-2002, 07:15 AM Originally posted by Dave Clark [K]eeping in mind that JavaScript may not work ... It's not that it may not work, it will not work for at least one in ten users. That will make you seem an awfully bad web author and may run you afoul of certain disability laws. webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |