Select Menus

Home Search

Select menus

Bind events directly to the select element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

 
$(".mySelect").on( "change", function(event, ui) {
  ...
});

The select menu plugin has the following custom events:

create triggered when a select menu is created

$( ".selector" ).selectmenu({
   create: function(event, ui) { ... }
});