i have one list in php page with follwoing script
<div id='demo' style="padding-left:20px">
<select name='lists[]' multiple='multiple' class='multiselect' >
<?php
$sql="select list_id,list_name from tbl_list";
$result=mysql_query($sql);
for($i=1;$i<=mysql_num_rows($result);$i++)
{
$row=mysql_fetch_array($result);
?>
<option value='<?php echo $row['list_id']; ?>' title='<?php echo $row['list_name']; ?>'><?php echo $row['list_name']; ?></option>
<?php
}
?>
</select>
</form>
</div>
now after i select multiple rows in list box, i want to get the values of selected rows with jquery.
Thanks
will return your selected values in the form x,y,z