Hi there,
The drop down box code (below) is designed to open the link in the a new window (called Download). Any other link that is chosen will also open in the same new window.
It works in IE, Firefox and Chrome – just not Safari. Can someone please tell me why?
Thank you.
<!-- Begin - News
function formlowerlinks(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.open(URL, "Download");
}
document.write('<form name="form">');
document.write('<select name="site" size=1 onChange="javascript:formlowerlinks()" style="background-color:#B5C555; color:#000000; font-family:Verdana, Arial, sans-serif; font-size:10pt;">');
document.write('<option value="#">Previous lesson downloads:');
document.write('<option value="2013-09-21.pdf">- Lesson 3 >>');
document.write('<option value="2013-09-14.pdf">- Lesson 2 >>');
document.write('<option value="2013-09-07.pdf">- Lesson 1 >>');
document.write('</select>');
document.write('</form>');
// End -->