Is there any way to serialize html form element decorated with chosen. Here is html fragment:
<select data-placeholder="Please select a community..." multiple="multiple" class="community-select chzn-done" id="selBBJ" style="display: none;">
<option></option>
<option value="26">Awesome Private Community</option>
<option value="1">Global Community</option>
<option value="28">just another public community</option>
<option value="25">New Awesome Public</option>
<option value="27">Ololo community</option>
</select>
$(#some-select).val() return values But $(#some-select).serialize() - return empty array.. Other elements without multiple serialized correctly.. How to do it right?
Here is code to play code on jsbin