I have a html form:select
<select id = 'myselect'>
<option value = '1'>1</option>
<option value = '2'>2</option>
...
<option value = 'N'>N</option>
</select>
for a beautiful drawing I use jquery-ui
$('#myselect').selectmenu();
I need to box 1 had its own style
how to do it? set the id, class does not work :(
I think that i should do the following:
1) create html code of 'classic' select form
2) join created 'classic' select form to jquery-ui
3) find element in jquery-ui selectmenu (HOW?)
4) set to found element new class-name
5) use css for class-name