Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
...
<select id="category_name">
<option value="">None</option>
<option value="book_1382">Books</option>
<option value="zebra_82763">Zebras</option>
</select>
...
...
var selectElement = document.getElementById('category_name');
var selectedValue = selectElement[selectElement.selectedIndex].value;
alret (selectedValue);
...
var el = document.getElementById("category_id");
var val = el[el.selectedIndex].text;
document.getElementById("category").value = val;