UNPKG

hck2-dev

Version:

Development Tools For HCK2

16 lines (11 loc) 296 B
// Same as document.getElementByID() but with cache" /* How To Use var element = $id('menuButton'); */ function $id(id) { if ($id.cache[id] === undefined) { $id.cache[id] = document.getElementById(id) || false; } return $id.cache[id]; } $id.cache = {};