Top Rounds
| We are Hiring! |

_keyUp ·

This is a Browser Action API.

_keyUp simulates doing a keyUp of a key on the given element.

Syntax:

_keyUp( element, character, COMBO_KEY )

The parameters are:

  • element: HTML Element to invoke the keyup on
  • character: Character to be pressed
  • COMBO_KEY: Combination key pressed along with the key. Can be “ALT”, “CTRL”, “META” or “SHIFT

Example:

_keyUp(document.body, 'a'); _keyUp(document.body, 'a "CTRL");




---


Top Rounds