The select menu plugin has the following options:
corners
default: "true"
Applies the rounded corner class to add the theme button border-radius to the select button if set to true. This option is also exposed as a data attribute: data-corners="false"
data-corners="false"
$('select').selectmenu({ corners: "false" });
icon
default: "arrow-down"
Sets the icon for the select element from the icon set. This option is also exposed as a data attribute: data-icon="star"
data-icon="star"
$('select').selectmenu({ icon: "star" });
iconpos
default: "right"
Position of the icon in the select button. Possible values: left, right, none, notext. The notext value will display the select as an icon-only button with no text feedback. This option is also exposed as a data attribute: data-iconpos="left"
data-iconpos="left"
$('select').selectmenu({ iconpos: "left" });
iconshadow
Applies the icon drop shadow class to add the theme shadow style to the select button if set to true. This option is also exposed as a data attribute: data-iconshadow="false"
data-iconshadow="false"
$('select').selectmenu({ iconshadow: "false" });
inline
default: "null" (false)
If set to true, this will make the select button act like an inline button so the width is determined by the feedback text inside. By default, this is null (false) so the select button is full width, regardless of the feedback content. Possible values: true, false. This option is also exposed as a data attribute: data-inline="true"
data-inline="true"
$('select').selectmenu({ inline: "true" });
nativeMenu
When set to true, clicking the custom-styled select menu will open the native select menu which is best for performance. If set to false, the custom select menu style will be used instead of the native menu. This option is also exposed as a data attribute: data-native-menu="false"
data-native-menu="false"
$('select').selectmenu({ nativeMenu: "false" });
shadow
Applies the drop shadow class to add the theme shadow style to the select button if set to true. This option is also exposed as a data attribute: data-shadow="false"
data-shadow="false"
$('select').selectmenu({ shadow: "false" });
theme
default: null, inherited from parent
Sets the theme swatch color scheme for the select element. This is a single letter from a-z that maps to the swatches included in your theme. By default, a select will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"
data-theme="a"
$('select').selectmenu({ theme: "a" });