diff --git a/entries/selectmenu.xml b/entries/selectmenu.xml
index 83d19f59..a65eb4ab 100644
--- a/entries/selectmenu.xml
+++ b/entries/selectmenu.xml
@@ -73,7 +73,29 @@
"ui-selectmenu-button-open": "ui-corner-top",
}
-
+
+
+ Initialize the with the classes
option specified, changing the theming for the ui-selectmenu-menu
class:
+
+ $( ".selector" ).({
+ classes: {
+ "ui-selectmenu-menu": "highlight"
+ }
+ });
+
+
+
+ Get or set a property of the classes
option, after initialization, here reading and changing the theming for the ui-selectmenu-menu
class:
+
+ // Getter
+ var themeClass = $( ".selector" ).( "option", "classes.ui-selectmenu-menu" );
+
+ // Setter
+ $( ".selector" ).( "option", "classes.ui-selectmenu-menu", "highlight" );
+
+
+
+