Skip to content
Иван Калъчев edited this page Jan 15, 2023 · 3 revisions

The select is a HTML component, that presents am option (a/b/c) value.

Combobox-expanded

How to use it?

Example Code

Normal select

<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>

Classes

be-select

Get Value

JQuery

You can get the value of certain select with JQuery, as it follows below.

$("#ID").val()

Clone this wiki locally