Javascript util.js - jcobban/Genealogy GitHub Wiki
Up: Javascript Programming Guide
Initialization of dynamic browser functionality that is performed for all pages is implemented in /jscripts/util.js. This file also includes functions which are available to all scripts.
When this script is included it checks whether the ECMAScript (JavaScript) implementation in the current browser supports at a minimum the ES2015 standard. In particular it demands support for let
, const
, addEventListener
, and Unicode. This means that all versions of Microsoft Internet Explorer prior to release 11 will fail and the user is notified to upgrade.
Table of Contents
- function addOption(select, text, value)
- function commonInit(event)
- function closeFrame(lastChoice)
- function getParmsFromXml(element)
- function hideRightColumn()
- function openFrame(name, url, side)
- function openSignon()
- function showImage(ev)
- function traceAlert(message)
Next: Common Dialog Support