views:

29

answers:

1

Hello all,

I looking for a script that will enable me to select an area in a table (using the mouse), something similar to this script - http://odyniec.net/projects/imgareaselect/.

What I need to do is to select some td's with an identical area effect as used in the imgareaselect above, and manipulate the containing data. Any ideas?

Thank you!

+1  A: 

With jQuery UI you should be able to do something like this:

$('table').selectable({
    filter: 'td'
});
PetersenDidIt
Perfect - exactly what I was looking for! thank you!
Spiros