jQuery Mobile Selectmenu Widget theme Option Last Updated : 30 Jun, 2021 Comments Improve Suggest changes Like Article Like Report jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using jQuery Mobile Selectmenu Widget theme Option to set the color scheme for the selectmenu. The value between the a-z letter maps to the swatches the theme. It accepts the string type value and its default value is null. Syntax: $( ".selector" ).selectmenu({ theme: string }); CDN Link: First, add jQuery Mobile scripts needed for your project. <link rel="stylesheet" href="//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css"> <script src="//code.jquery.com/jquery-3.2.1.min.js"></script> <script src="//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script> Example: HTML <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href= "//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css"> <script src="//code.jquery.com/jquery-3.2.1.min.js"></script> <script src= "//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"> </script> <script> $(document).ready(function () { $("#GFG").selectmenu({ theme: "b" }); }); </script> </head> <body> <div data-role="page" id="page1"> <center> <div data-role="header"> <h1>GeeksforGeeks</h1> <h3>jQuery Mobile Selectmenu Widget theme Option</h3> </div> </center> <div role="main" class="ui-content"> <label for="GFG" class="select"> GeeksforGeeks Courses: </label> <select name="GFG" id="GFG"> <option value="C">C Programming</option> <option value="CPP">C++ Programming</option> <option value="JAVA">Java Programming</option> <option value="overnight">Python Programming</option> <option value="WEB">Web Development</option> </select> </div> </div> </body> </html> Output: Reference: https://api.jquerymobile.com/selectmenu/#option-theme Comment More infoAdvertise with us Next Article jQuery Mobile Selectmenu Widget theme Option P ppatelkap Follow Improve Article Tags : Web Technologies JQuery jQuery-Mobile Similar Reads jQuery Mobile Slider Widget theme Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile Slider Widget theme option to set the color scheme (swatch) for the slider widget. The theme value uses a single 1 min read jQuery Mobile Selectmenu Widget mini Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using jQuery Mobile Selectmenu Widget mini Option to set the size of the element to a more compact, mini version. It accepts the boolean 1 min read jQuery Mobile Selectmenu Widget inline Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using jQuery Mobile Selectmenu Widget inline Option to make the select button act like an inline button so the width is determined by th 1 min read jQuery Mobile Selectmenu Widget classes Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile Selectmenu Widget classes option to add some additional classes to the element. The additional classes can be us 1 min read jQuery Mobile Selectmenu Widget defaults Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile Selectmenu Widget defaults Option to set to true that indicates other widget options that have default values an 1 min read jQuery Mobile Selectmenu Widget corners Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile selectmenu Widget corners Option to set the border-radius of selectmenu options. It accepts boolean type value a 1 min read jQuery Mobile Selectmenu Widget disabled Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using jQuery Mobile Selectmenu Widget disabled option to disable the selectmenu, if the value is set to true. Syntax: $( ".selector" ).s 1 min read jQuery Mobile Popup Widget theme Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile Popup Widget theme option to set the color scheme for the popup contents. Syntax: $("selector").popup({ theme: " 1 min read jQuery Mobile Selectmenu Widget closeText Option jQuery Mobile is a web-based technology used to make responsive content that can be accessed on all smartphones, tablets, and desktops. In this article, we will be using the jQuery Mobile selectmenu Widget closeText Option to set the text of the close button that is helpful for translating this into 1 min read Like