I am using the following to try and obtain the text of the selectable selection with the following code:
$("#projSelectable").selectable({
stop: function(event, ui){
alert($(ui.selected).text());
}
});
this is just to make sure the proper values are pass through to the following functions. What I get is a blank alert. Any suggestions?