I have a div with dynamic content. When the content loads in the div I want the div to resize to fit the content. But I want this resizing to have a maximum height. If the conte
You could do this with css, e.g.: max-height: 100px; overflow-y:scroll;
max-height: 100px; overflow-y:scroll;