[jQuery] Re: Help making a table resizable with jQuery UI

2007-11-28 Thread Tim
here's another question for the group. my table is long. i can resize, but i would also like to be able to scroll vertically. when i put in overflow:auto instead of hidden, it seems to work. then i scroll and the resize handle scrolls with the table. how do i get it to stay put on the bottom

[jQuery] Re: Help making a table resizable with jQuery UI

2007-11-28 Thread Tim
nevermind. i needed to put in an overflow: hidden statement. for the record the code below worked, where resizable.css is flora.resizable.css plus the first line of flora.css. also, i am only resizing the south direction. $(document).ready(function(){ $("#example").resizable(); }); O