|
Posted by Jonathan N. Little on 01/22/45 11:38
ross wrote:
> I appreciate your assistance. I am a real novice and do not understand your
> notes? I am putting this into Dreamweaver and the "_blank" does not allow
> the script to make an independent page, but replaces the existing page. I am
> hoping to make an independent page when the viewer clicks on go. Any ideas,
> please?
Yes, drop Dreamweaver and learn HTML, it really is not that difficult.
Many many tutorials online...
A good place to start, lists all ELEMENTS and their *valid* ATTRIBUTES
http://www.w3.org/TR/html4/index/elements.html
for in your code:
FORM does not have an ALIGN attribute
FORM must have an ACTION attribute which yours does not have
OPTION does not have an a TARGET attribute (it is not a link)... that is
why your code will not open an new window. You should try to anyway see:
(why target="_blank" bad - Google Search)
http://www.google.com/search?hl=en&q=why+target%3D%22_blank%22+bad&spell=1
lastly with your code leave the select box on "Click here to browse" and
click "go" and see the error...
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|