List View Custom Header
<script type="text/javascript"> $( function(){ if( $.cookie('showNextInList') == 'yes'){ document.location = $("table").find("a").attr("href"); $.cookie('showNextInList', null, {path: '/'}); } }); </script>
Assignment View Custom Header
<script type="text/javascript"> $( function(){ $("input#assignmentComplete").click( function(){ $.cookie('showNextInList', 'yes', {path: '/'}); }); }); </script>