Skip to content

Instantly share code, notes, and snippets.

@brandwaffle
Created April 20, 2011 02:20
Show Gist options
  • Save brandwaffle/930215 to your computer and use it in GitHub Desktop.
Save brandwaffle/930215 to your computer and use it in GitHub Desktop.
hashbang jQuery scroller
jQuery(window).load(function(){
var scroll_array = window.location.hash.split('/', 2);
if(scroll_array[0] === '#!showcomment')
window.scroll(0,jQuery('#div-comment-'+scroll_array[1]).offset().top - 100);
jQuery('#div-comment-'+scroll_array[1]).css('background-color', '#F5A9A9');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment