It is possible to trigger a keyboard shortcut or action with a click?
The spacebar key currently scrolls any browser page down if you hit it. It is possible to bind or trigger the spacebar on a click?
$("body").on("click", function(){
var e = jQuery.Event("keydown");
e.which = 32;
$(this).trigger(e);
});