Skip to content

Instantly share code, notes, and snippets.

View TommyJerryMairo's full-sized avatar

Tommy Jerry Mairo TommyJerryMairo

View GitHub Profile
@TommyJerryMairo
TommyJerryMairo / simulate_keypress.js
Created November 22, 2016 09:36 — forked from ejoubaud/simulate_keypress.js
Simulate keypress that works in Google nav in Chrome
// Based on http://stackoverflow.com/a/10520017/1307721 and http://stackoverflow.com/a/16022728/1307721
Podium = {};
Podium.keydown = function(k) {
var oEvent = document.createEvent('KeyboardEvent');
// Chromium Hack
Object.defineProperty(oEvent, 'keyCode', {
get : function() {