JSFiddle - React, Tailwind, and code Playground
HTML
<select name="select" id="mobilDrop">
<option value="/">Sayfaya Git...</option>
<option value="http://www.karayeltasarim.com/">Karayel</option>
<option value="http://www.bing.com/">Bing</option>
</select>
JavaScript
document.getElementById("mobilDrop").onchange = function () {
if (this.selectedIndex !== 0) {
window.location.href = this.value;
}
};