# How to get html\_select values in Dash.jl

**URL:** https://discourse.julialang.org/t/how-to-get-html-select-values-in-dash-jl/48506
**Category:** Visualization
**Created:** [October 16, 2020, 6:08pm UTC](https://discourse.julialang.org/t/how-to-get-html-select-values-in-dash-jl/48506 "2020-10-16T18:08:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Iulian.Cioarca](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/iulian.cioarca/32/30166_2.png) [@Iulian.Cioarca](https://discourse.julialang.org/u/Iulian.Cioarca)
#### Post date: [October 16, 2020, 6:08pm UTC](https://discourse.julialang.org/t/how-to-get-html-select-values-in-dash-jl/48506/1 "2020-10-16T18:08:31Z")

</div>

I gave Dash.jl a try and it looks really nice! I have, however, a question:  
Suppose I have the following code:

```julia
using Dash, DashHtmlComponents, DashCoreComponents

app = dash()
app.layout = html_div() do
            html_tr((html_td("msg = "), html_td(id = "msg"))),
            html_div(id = "navigation") do
                html_select(id="DD", multiple=true, size=5,
                children=(
                html_option("aaa"),
                html_option("bbb"),
                html_option("ccc")
                )
                )
            end
        end

callback!(
    app,
    Output("msg", "children"),
    Input("DD", "id"),
) do x
    @info x
    return x
end

run_server(app, "127.0.0.1", debug=true)

```

How can I get the selection from the `html_select`?  
I don’t want to use `dcc_dropdown` because I like seeing more values in list and it’s much easier to select multiple items with `html_select`.
