combining slideToggle successfully with min-height
问题 I currently have a nicely hidden section at the top of my site which slides down upon click. The animation works great with slideToggle but I'd also like the div to cover at least the window height. I have managed to set the window height as a variable and alter the css to reflect this but combining it with the slideToggle makes the animation jumpy. jQuery(document).ready(function($) { var win = $(window).height(); $("#hidden").css("min-height", win); $("a#toggle").click(function() { var txt