Skip to content

Instantly share code, notes, and snippets.

$(document).keyup(function(e) {
var url = false;
// back arrow - previous post
if (e.which == 37) { url = $('.previous').attr('href'); }
// forward arrow - next post (unless this post is the most recent one).
else if (e.which == 39) { url = $('body:not(.latest) .next').attr('href'); }
// the 'H' key takes you to the homepage.
else if (e.which == 72) { url = '../'; }
// Go
if (url) {
@scfrisby
scfrisby / bbc.css
Created June 19, 2011 15:06
BBC Mod
#bbccom_mpu, #socialBookMarks, #bbccom_leaderboard, #bbccom_bottom, #bbccom_button, .bookmark-list, .atozfooter, .ifs_services, .aznav, .servicev4, div[id*=adsense], #page-bookmark-links-head, .share-body-bottom, #page-bookmark-links-foot {
display: none !important;
visibility: hidden !important;
}