Source code file: HideTableCells/app/assets/javascripts/application.js:
$('document').ready(function( ) {
$("#hidenext").click(function( ) {
$("td:visible:first").fadeOut( );
});
$("#refresh").click(function( ) {
location.reload( );
});
});