Skip to content

Instantly share code, notes, and snippets.

@benlumley
Created April 25, 2013 07:42
Show Gist options
  • Save benlumley/5458138 to your computer and use it in GitHub Desktop.
Save benlumley/5458138 to your computer and use it in GitHub Desktop.
Change to wp-chat js to make scroll work
// change
jQuery('#chat-area-'+pid).animate({ scrollTop: jQuery('#chat-area-'+pid).attr("scrollHeight") }, 2000);
// To:
jQuery('#chat-area-'+pid).animate({ scrollTop: jQuery('#chat-area-'+pid)[0].scrollHeight }, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment