When clicking the select button, it doesn't enter in the function? Why is that? The console in the browser is empty.
HTML:
<select name="field_choice[]"
        id="field_choice_1"
        class="form-control field_choice">
    <option value="0" >Link</option>
    <option value="1">Text</option>
</select>
JS:
<script type="text/javascript">
    $(".field_choice").on("click",function(){
        console.log(1);
    });
</script>
 
     
     
     
     
     
    