Catch F5 and Redirect
by amindunited
JavaScript
$(document).ready(function(){
$(document).on('keydown', function(e){
if (e.keyCode == 116 || (e.keyCode == 82 && e.ctrlKey)){
e.preventDefault();
alert('No Refresh for you!');
//Redirect to this fiddle...
window.location.href="http://jsfiddle.net/amindunited/NvSMH/";
}
})
})