I want to use multiple select box with multiple width with uniform . Problem is when I do
$('#small').uniform({selectClass:'smallSelect'});
$('#big').uniform({selectClass:'bigSelect'});
<select id="small">
<option>test</option>
</select>
<select id="big">
<option>test2</option>
</select>
Only the first one gets applied i.e bigSelect gets ignored .