Answers for "select option link"

1

selected options with link

<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"
	<option value="fr">
        Français <!-- Go root/fr on click -->
    </option>
</select>
Posted by: Guest on March-02-2021
0

how to echo data into an option tag as a link

<select name="forma" onchange="location = this.value;">
 <option value="Home.php">Home</option>
 <option value="Contact.php">Contact</option>
 <option value="Sitemap.php">Sitemap</option>
</select>
Posted by: Guest on September-19-2020

Browse Popular Code Answers by Language