Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am going offline for a few days, and would like to bring the javascript documentation with me on my laptop :)

Does anyone know of a place where I can get downloadable reference documentation for javascript, preferably for firefox?

I have cheked the mozilla site, but have only been able to find an online version.

Thanks, Jonas

share|improve this question

3 Answers

up vote 39 down vote accepted

Updated March, 2013

You can find the current DOM documents at W3C Document Object Model (DOM) Technical Reports (individual links below). Unfortunately I can no longer find an official pdf from Mozilla of their Javascript Reference

This will get you started, I think:

  1. ECMA-262 ECMAScript Language Specification (ECMA) aka Javascript
  2. DOM3 CORE or DOM2 CORE (W3C)
  3. DOM2 HTML (W3C)
  4. DOM2 CSS (W3C)
  5. DOM2 Events (W3C)
  6. DOM3 Validation (W3C)
  7. DOM3 Load and Save (W3C)
  8. DOM2 Traversal (W3C)
  9. Javascript 1.5 (unofficial pdf of the Mozilla info, not updated)
share|improve this answer
2  
A very good post. Thank you. – PiPeep Dec 19 '09 at 17:49
As of now, all of the above except for #7 work. – coffee-grinder Sep 11 '12 at 16:42
@coffee-grinder Unfortunately Mozilla has removed that information. You can find the information online. – some Sep 11 '12 at 18:28
@some could you tell me what item 7 was? Then I can google it! – mike rodent Feb 23 at 8:14
@mikerodent It was devedge-temp.mozilla.org/central/javascript/index_en.html (the link now goes to a forbidden page) – some Mar 15 at 22:16
show 1 more comment

https://github.com/rgarcia/dochub is a node application that can be installed locally which serves up a pile of relevant web development documentation.

Online version of the app here: http://dochub.io/

This works great for me while travelling.

share|improve this answer
Its damn cool man. Where were you? – Yousuf Memon Apr 18 at 13:51

How about finding a copy of both (or either one of) JavaScript: The Definitive Guide by David Flanagan and JavaScript: The Good Parts ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.