Links
- Checkout source code:
git clone https://code.google.com/p/closure-library/
- Browse source code
- Google Closure and jQuery, Side by Side
- Docs
- API Reference
- Project Wiki
- FAQ
- Inspector
- Concepts
- Tutorial
- Event Handling with Closure
- Using ClosureBuilder
- Auto Complete
- AutoComplete.Remote
- This one has a demo but you probably want RemoteArrayMatcher
- AutoComplete.RichRemote
- This one has a demo but you probably want RichRemoteArrayMatcher
- AutoComplete.Remote
- Ajax - XhrIo
- Drag and Drop
- Components
- Controls
- Third Party
Bag
array.forEach
goog.array.forEach(entry.comments, function(comment) {
array.map
var domlets = goog.array.map(response.entries, function (entry) {
array.reduce
goog.array.reduce( domlets, function(parent, domlet) { // Do something return value; }, goog.dom.getElement('something'));