ARTICLE AD BOX
I am just wondering if it is possible to use an ahref link to target a page with a dropdown and then have the dropdown show the selected option once the page loads?
e.g
<div class="content"><a href="https://this.will.be.the.link" target="_blank" class="link"><span class="icon fa fa-link"></span></a>
</div>
this would be the target:
<select class="form-dropdown" id="input_3" name="q3_selectThe" style="width:310px" data-component="dropdown" aria-label="Select the player you are voting for.">
<option value="">Please Select</option>
<option value="player1">player1</option>
<option value="player2">player2</option>
<option value="player3">player3</option>
<option value="player4">player4</option>
<option value="player5">player5</option>
<option value="player6">player6</option>
<option value="player7">player7</option>
<option value="player8">player8</option>
</select>
