I am fairly inexperienced with code being a support technician but it is down to us to "support" our website. We have many documents which have to be available to download so we use a drop down select menu (if that is what they're called?) to open a pdf in a new tab when a item is clicked in the list. However we have recently discovered this dose not work with IOS Safari because it uses popup blocking so I was just wondering if you can see a way around this?
Here is our code currently.
<li>
<label for="newsletters" >School Newsletters</label>
<select name="newsletters" class="newsletters" id="newsletters" onchange="window.open(this.value)">
<option value="#">Please Select</option>
<option value="newsletters/201612.pdf"> December 2016</option>
<option value="newsletters/201607.pdf"> July 2016</option>
<option value="newsletters/201603.pdf"> March 2016</option>
<option value="newsletters/201512.pdf"> December 2015</option>
<option value="newsletters/201507.pdf"> July 2015</option>
</select>
</li>
Any advice would be greatly appreciated.
Thanks J Tech
or . Or not use a select at all.
– Shilly Feb 14 '17 at 13:55