Javascript getArgs - jcobban/Genealogy GitHub Wiki

function getArgs()

Up: Javascript Programming Guide

Source: /jscripts/util.js

The function getArgs is called to extract the arguments from the location URL when the script is invoked by method='get'. It stores the value of each argument into a JavaScript object in an attribute with the name of the argument converted to lower case. If there is an parameter 'debug' it sets the value of global variable debug to the value of the parameter. The function returns the constructed object. The object is assigned to the global variable args.

Next: function getArgs()