Skip to content

Instantly share code, notes, and snippets.

@bastien
Created July 22, 2008 07:51
Show Gist options
  • Save bastien/704 to your computer and use it in GitHub Desktop.
Save bastien/704 to your computer and use it in GitHub Desktop.
Scroll to the bottom of an element using Prototype and Scriptaculous wokrs under Firefox and Safari (not tested under ie)
/* Scroll to the bottom of an element using Prototype and Scriptaculous
wokrs under Firefox and Safari (not tested under ie)
*/
function scrollToBottom(element)
{
var offset= window.innerHeight - $(element).getHeight() -10 ;
Effect.ScrollTo(element, {offset:-offset})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment