myFile.html
<select>
<option value=“1”>One</option>
<option value=“2”>Two</option>
<option value=“3”>Three</option>
</select>
Above, creates a simple drop-down list.
Same myFile.html
<a href="www.google.com/someThing?value={{ selected-option }}">
Above, trying to pass selected option to URL.
What I want to happen is, after selecting an option, the value should be passed to the href. How can this be done?