The Following Code is on this page
$(document).ready(function(){
$("#show_all").click(function(e){
e.preventDefault();
$.under_construction.showPendingElements();
$.under_construction.hideOverlayOfPendingElements();
});
$("#toggle_overlay").click(function(e){
e.preventDefault();
$.under_construction.showPendingElements();
$.under_construction.toggleOverlayOfPendingElements();
});
$("#toggle_display").click(function(e){
e.preventDefault();
$.under_construction.hideOverlayOfPendingElements();
$.under_construction.toggleDisplayOfPendingElements();
});
$(document).bind('keydown', 'ctrl+e', function(evt){
$.under_construction.toggleOverlayOfPendingElements();
});
//show overlay by default
$.under_construction.toggleOverlayOfPendingElements();
});
Press CTRL+E to simulate the overlaying of elements with the jQuery Hotkeys Plugin