i have a bit problem with a select
search of bootstrap, i need get the value of the search.
<div class="form-group has-feedback has-feedback-left">
<select class="form-control bootstrap-select" data-live-search="true" asp-for="Client" asp-items=@ViewBag.clients></select>
</div>
i'm trying to get into a change
event, but only can get the id and the value of the option, but not of the search value...
$("#Client").change(function () {
alert(this.value);
});