I can easily animate the "opacity" property
$("#blah").animate({ opactiy: 0.5}, 1000);
How can I animate the max-height css property... example:
$("#blah").animate({ "max-height": 350}, 1000);
(hint, that code doesn't work)
EDIT: To answer the questions below:
- There are multiple images all of css class "blah"
- The images are of random sizes, BUT they all have max-height: 100px
- When a user hovers over an image, I want it to animate the max-height (thereby smoothly un-restricting the height)