I have surfed the net but just cant find anything on how to open a new window after selecting a pdf file and then clicking on the download button.
Can someone please help.
This is the code I have been working on but still no joy
Code:
<form name="daily">
<select name="newsletter">
<option value="daily/250909.pdf">Newsletter for 250909</option>
<option value="daily/240909.pdf">Newsletter for 240909</option>
</select>
<input type="button" value="Download" onclick="window.open(daily.newsletter.options[selectedIndex].value)">
</form>