Skip to content

Instantly share code, notes, and snippets.

@dimsav
Created June 19, 2015 23:31
Show Gist options
  • Save dimsav/d09b7bb0c3e184f38cf4 to your computer and use it in GitHub Desktop.
Save dimsav/d09b7bb0c3e184f38cf4 to your computer and use it in GitHub Desktop.
var a = $('.full-attendee-list li');
var b = $(a[Math.floor((Math.random() * a.length) + 1) - 1]);
b.siblings().mouseleave().css({border: 'none'});
b.css({border: '7px dotted red'}).mouseenter();
$('html,body').animate({scrollTop: (b.offset().top - 300) + 'px'}, 'fast');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment