I have a table which displays some grid data for search results…Now the height of this table would vary each time.
So is there any way by which I could get the height of this dynamic table..
Basically I want to set an overflow:auto property for that table which would enable it to be scrolled on the iPad using 2-fingers (I cannot do the scrolling using 1-finger as that table rows does the drag action for 1-finger)
$('#tableid').height();will get you the height (with jquery). I’m not sure how that’s relevant to your desire to use overflow:auto.