I have a select
and a label
. Now on click of the label
I want the select box to open. What is the best way to do this?
<label>
<select id="Place" data-bind="options: Titles, optionsCaption: 'Going?', optionsValue: 'place', value: Location"></select>
</label>
Does anyone know how I can, when the label
is clicked, open the select
? I would prefer a javascript option as it means it will be called everytime, as I am having a Internet explorer issue.