Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/callumacrae/learning-from-jquery
:blue_book: The code repository for Learning from jQuery
https://github.com/callumacrae/learning-from-jquery
Last synced: 2 months ago
JSON representation
:blue_book: The code repository for Learning from jQuery
- Host: GitHub
- URL: https://github.com/callumacrae/learning-from-jquery
- Owner: callumacrae
- Created: 2012-07-04T22:00:58.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-28T20:04:59.000Z (almost 12 years ago)
- Last Synced: 2024-10-10T00:11:08.328Z (3 months ago)
- Language: JavaScript
- Homepage: http://shop.oreilly.com/product/0636920026280.do
- Size: 96.7 KB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learning from jQuery
This is the code repository that goes with [Learning from jQuery](http://shop.oreilly.com/product/0636920026280.do), containing all major functions and code samples from the book.
## Files in this repo
- `ajax.js` contains the `request()` function and `get()` and `post()` aliases from Chapter 4: AJAX.
- `events.js` contains the `addEventListener()`, `triggerEvent()` and `removeEventListener()` functions.
- The `ajax` directory contains the simple PHP AJAX example from Chapter 4: AJAX. It relies on both `ajax.js` and `events.js`.
- The `docblockExample` directory contains example files with docblocks in, from Chapter 5: JavaScript Conventions. There is only one example so far, feel free to add your own and send a pull request.