tags:

views:

32

answers:

1

i have a div with overflow auto and height fix , when i hide that div and show it again than scrolling not come but before hiding the div scrolling was there why this happen why style is changed to overflow hidden , and for solving this problem what should i do ?

+1  A: 

When you make it show again, set its overflow property to auto again.

Or just try jQuery's toggle() or hide() & show() to see if that alone works out for you.

Júlio Santos
Hey Rahul let me know if this worked, I'm kinda curious now.
Júlio Santos