
Untitled
By: a guest on
May 8th, 2012 | syntax:
None | size: 0.60 KB | hits: 11 | expires: Never
jQuery('.open-content').hide().before('<div class="container_12"><a href="#" id="toggle-content" class="button"><div id="expand-button" ></div></a></div><div id="toggle-top" style="width:100%"></div>');
jQuery('a#toggle-content').click(function() {
jQuery('.open-content').slideToggle(1000, function(){
var offset = jQuery('.open-content').offset();
var y = offset.top + jQuery('.open-content').height();
var wheight = $(window).height()
var scroll = y - wheight;
$('html,body').animate({scrollTop:scroll}, 500);
});
});