-
Notifications
You must be signed in to change notification settings - Fork 1
Select
Иван Калъчев edited this page Jan 15, 2023
·
3 revisions
The select is a HTML component, that presents am option (a/b/c) value.

<div class="be-select" style="width:200px;">
<select>
<option value="0">Select car:</option>
<option value="1">Audi</option>
<option value="2">BMW</option>
</select>
</div>be-select
You can get the value of certain select with JQuery, as it follows below.
$("#ID").val()