Files
Thomas Aylott 67ed84b3e0 Beginning README
addEventListener snippet default to bubbling
Updated info.plist
2009-02-15 08:14:35 +00:00

45 lines
2.3 KiB
Markdown

The Javascript Bundle
=====================
Integrated Quirksmode.org Docs
------------------------------
The DOM code completions and tooltip data were generated from
the excellent [Quirksmode W3C DOM Compatibility Tables](http://www.quirksmode.org/dom/compatibility.html "W3C DOM Compatibility Tables") by [PPK](http://quirksmode.org/blogs.shtml "QuirksMode Blogs") (used with permission).
Scraped, reformatted and converted for use in the bundle by [Thomas Aylott / subtlegradient](http://subtlegradient.com/ "subtleGradient").
Code Completion
---------------
Code Completion as-you-type for Methods and Properties of...
* Cross-Platform Browser Object Model API
* Cross-Platform Document Object Model API
* String, Number, Array
### Dumb Completion
The code completion is mostly dumb. It doesn't understand your code and just suggests the same things in almost all contexts.
### Smart Completion
For some things with known types, the list of completions is filtered to only include known methods and properties of that type.
*Requires the latest cutting edge build of TextMate*
Snippets
--------
Cut your keystroke count in half with snippets for common javascript idioms.
Learn Javascript
----------------
* [Quirksmode W3C DOM Compatibility Tables](http://www.quirksmode.org/dom/compatibility.html "W3C DOM Compatibility Tables") by [PPK](http://quirksmode.org/blogs.shtml "QuirksMode Blogs")
* [Eloquent JavaScript -- interactive tutorial](http://eloquentjavascript.net/ "Eloquent JavaScript -- interactive tutorial")
* [A re-introduction to JavaScript - MDC](http://developer.mozilla.org/en/A_re-introduction_to_JavaScript "A re-introduction to JavaScript - MDC")
* [Mozilla Javascript](http://developer.mozilla.org/En/About_JavaScript "About JavaScript - MDC")
* [Microsoft JScript](http://msdn.microsoft.com/en-us/library/72bd815a%28VS.80%29.aspx "JScript")
* [Safari JavaScript Reference](http://developer.apple.com/documentation/AppleApplications/Reference/SafariJSRef/Intro/Intro.html "Safari JavaScript Reference")
* [Web Kit DOM Programming Topics](http://developer.apple.com/documentation/AppleApplications/Conceptual/SafariJSProgTopics/ "Web Kit DOM Programming Topics")
* [JavaScript Madness: Keyboard Events](http://unixpapa.com/js/key.html "JavaScript Madness: Keyboard Events")