I have a hidden div, .model-detail-panel that is revealed when clicking .span.
$('[class*="span"]').on('click', function () {
$(this).parent().next('.model-detail-panel').slideToggle()
});
I want to incorporate .animate() into this code to scroll the screen so that the top of the revealed div is at the top of the window.
How can I achieve this?
Thanks in advance..