php - How to get Chosen Multiselect selected values under the For Loop -


this view file code

<?php for($i=0; $i<4; $i++)  { ?>  <div class="box22">       <div class="mcm">            <input type="text" placeholder="myself" id="coworkers" name="coworkers[]" />            <span class="bar"></span>       </div>        <div class="select2">        <select id="category_<?php echo $i; ?>" name="category[]" class="chosen-select ref-sel1" multiple >            <?php            foreach($genre $gen){                 echo '<option value='.$gen->genre_id.'>'.$gen->genre_name.'</option>';            }             ?>        </select>       </div>  </div> <?php } ?>  

my script : when chose 1 or more option, not comes script. how multiple values under loop

    $(document).ready(function()     {         $('form#shortfilm').submit(function(e)          {             e.preventdefault();             var form = $(this);             var foo = [];             $('#category :selected').each(function(i, selected){               foo[i] = $(selected).text();             });         });     }); 

change text val()

 $('option:selected').each(function(i, selected){               foo.push($(selected).val());             }); 

or:

var foo = []; $('.box22').each(function(x,v){ var temp =[]      $(v).find('option:selected').each(function(i, selected){         temp.push($(selected).val());      });      foo.push(temp) }); 

see demo second option here


Comments

Popular posts from this blog

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -

asp.net mvc - breakpoint on javascript in CSHTML? -