is it possible to use a form with some radio buttons for linking to the selected page after submitting? So i selected the first radio-button, hit the buttion submit and got the the url /angebote.html
Thx!
<form id="aktion">
<div class="action-check">
<input class="radio" type="radio" value="angebote.html" name="suche">
<label for="suche">Ich suche ein Zimmer</label>
</div>
<div class="action-check">
<input class="radio" type="radio" value="angebotseingabe.html" name="biete">
<label for="biete">Ich biete ein Zimmer</label>
</div>
<div class="action-check">
<input class="radio" type="radio" value="gesuchseingabe.html" name="gruenden">
<label for="gruenden">Ich möchte eine WG gründen</label>
</div>
<div class="submit_container">
<input class="submit" type="submit" value="Los geht's">
</div>
</form>
You can use javascript like this.