I have a 2 cells table and I wanna make the first resizable with a grab hand using jQuery
A:
jQuery UI has a resizable plugin that will allow you to make an element on a page resizable.
However, I can imagine resizing table cells is going to be interesting, especially since they're going to likely share space in a row. Take a look at the alsoResize
option; you may very well need to scale down the other cell while the other scales up and vice versa.
Also, the IEs are notorious when it comes to manipulating table
elements, so YMMV.
ajm
2010-08-10 20:54:16