Syntax: addButtonToContainer( text, func [, ID] );
Arguments:
- text [string]: The text for the button.
- func [function]: The function to be called when the button is clicked upon.
- ID (optional) [string]: The ID to be used for the button element.
Example:
addButtonToContainer('A Test Button', function () { alert('Test.'); }, 'test-button');