php - tokenize multiselect searched text not cleared after select particular element -


please on attached image clear question

<select multiple="multiple" class="tokenize-sample" name="state_live[]" id="state_live">     <option value="">select category</option>     <?php     $que = $this->db->query("select  * state ");     foreach($que->result_array() $row_val) {     ?>     <option value="<?php echo $row_val['id'];?>"<?php if(isset($row_about['state_live']) && in_array($row_val['state_name'],explode(",",$row_about['state_live']))){echo "selected";}?>><?php echo $row_val['state_name'];?></option>     <?php } ?> </select>[enter image description here][1] 

enter image description here


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -