You can have the case events sorted with the most recent ones on top! Click My Settings, then Options. Search for Case Sort and choose Show newest edits first.
Alternatively, you can add a link with a customization like this (but that won't work in the Mobile Site view):
name: Bottom link
description: Adds a link to jump to the page bottom
author: Michel de Ruiter
version: 1.0.0.0
js:
if (!$('#BugEvents').length)
return;
var wher = '.statusbar';
if ($(wher).length == 0)
wher = '#statusbarspacer';
$('<a>').appendTo(wher).addClass('bottomlink')
.attr('href', '#safeFocus').attr('title', 'Page bottom');
css:
.bottomlink {
background: url(styles/sprites/sprite-icons.png) no-repeat;
background-position: 0px -9px;
margin: 4px;
height: 8px;
width: 8px;
display: block;
float: right;
}