I have a select menu that i’m trying to bind a click function and be able to get the select options value attribute back on change.
select = $('#select_networks').selectmenu();
//bind the change of network/group
select.bind( "change", function(event, ui) {
//need to figure out the selected elements value attribute
});
See this:
UPDATE