I'm not a web designer and I'm trying to layout a sample html page.
I've defined an options list that displays properly. I want the selection to link to a new document without using a submit button. If this is possible, can anyone tell me what I'm doing wrong?
<select name="DocumentList">
<option value="" selected="selected"></option>
<option href="path\doc1.pdf" target="doc1">Document1</option>
<option href="path\doc2.pdf" target="doc2">Document1</option>
</select>
I've defined an options list that displays properly. I want the selection to link to a new document without using a submit button. If this is possible, can anyone tell me what I'm doing wrong?
<select name="DocumentList">
<option value="" selected="selected"></option>
<option href="path\doc1.pdf" target="doc1">Document1</option>
<option href="path\doc2.pdf" target="doc2">Document1</option>
</select>