how to find selected elements with Jquery UI selectable
Posted
by kevzettler
on Stack Overflow
See other posts from Stack Overflow
or by kevzettler
Published on 2009-08-20T00:11:17Z
Indexed on
2010/05/10
6:54 UTC
Read the original article
Hit count: 372
Hi All, I am looking for info on the event and ui objects the jquery selectable events: "selecting", and "start" take as parameters. I cannot find this in the documentation and looping through the properties is no help.
$('#content_td_account').selectable({
filter: 'li:not(".non_draggable")',
selecting: function(event, ui) {
}
});
Specifically I want to find what elements are being selected and check them to see if their parent elements are the same or not. I assumed this would be in the ui object some where.
© Stack Overflow or respective owner