Is there any way to set id for asm select instead of having it initiated automatically? Thank you in advanced.
<select multiple id="mySelect">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
$("#mySelect").asmSelect({
animate: true,
addItemTarget: 'bottom'
});
I don't want the asmSelect id to be "asmSelect0", please show me how to change it. Thank you.