I am almost new to JQuery. So please forgive if it is trivial.
What does this mean in JQuery: var Utilities = $([]);
Is this like defining an array? Any links to an example?
Some more info: After defining that in the code I see:
Utilities.Message = ' some message';
Utilities.function1 = function(message) { some code };
Utilities.function2 = function() { some code};
calling the method: Utilities.function2();
Thanks, -Sara.