Html select multiple get all values at onchange event
问题 I have a form with a select multiple. I want to get all selected values at onchange event but i dont know if this is possible. I think "this.value" only returns the last element selected. Is it possible to get all the elements selected as array at onchange?? Thanks in advance. <select name="myarray[]" id="myarray" class="select2-select req" style="width: 90%;" onChange="get_values(this.value)" multiple> {foreach key=key item=value from=$myarray} <option value="{$key}" >{$value}</option> {