Functions
$()
- shortcut to document.getElementById() function
$$()
- parses one or more CSS filtering expressions, analogous to the ones used to define CSS rules, and returns the elements that match these filters
$F()
- returns the value of any field input control, like text boxes or drop-down lists
$A()
- converts the single argument it receives into an Array object
$H()
- converts
objects into enumerable Hash objects that
resemble associative arrays
$R()
- simply a short hand to
writing new ObjectRange(lowerBound, upperBound, excludeBounds)
Try.these()
- makes it easy when you want to try
different function calls until one of them works
– This note has been copied from sergiopereira.com. All copyright goes to him. Examples of the function can be found here.