Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simulate / Fake a keypress in javascript [duplicate]

Is it possible to simulate key press events programmatically in JavaScript?

like image 262
tan Avatar asked Apr 13 '26 10:04

tan


1 Answers

A non-jquery version that works in both webkit and gecko:

var keyboardEvent = document.createEvent('KeyboardEvent');
var initMethod = typeof keyboardEvent.initKeyboardEvent !== 'undefined' ? 'initKeyboardEvent' : 'initKeyEvent';
    
keyboardEvent[initMethod](
  'keydown', // event type: keydown, keyup, keypress
  true, // bubbles
  true, // cancelable
  window, // view: should be window
  false, // ctrlKey
  false, // altKey
  false, // shiftKey
  false, // metaKey
  40, // keyCode: unsigned long - the virtual key code, else 0
  0, // charCode: unsigned long - the Unicode character associated with the depressed key, else 0
);
document.dispatchEvent(keyboardEvent);
like image 113
Philip Nuzhnyy Avatar answered Apr 15 '26 23:04

Philip Nuzhnyy