$(document).ready(function(){ $("div.accordion").hover(function(){ $(this).css("cursor", "pointer"); },function(){ $(this).css("cursor", "default"); }); $("div.accordion").click(function(){ var ListHeight = document.getElementById("LIST").scrollHeight; $(this).next().slideToggle(800, function(){ if(document.getElementById("LIST").scrollHeight != ListHeight){ // $("#LIST").scrollTop(document.getElementById("LIST").scrollHeight); } }); }); });