JavaScript: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{TOCright}} | {{TOCright}} | ||
Always I can not find a pleasant and good reference/example of JavaScript code <ref>[http://www.javascriptkit.com/jsref/index.shtml JavaScriptKit], Index, Tutorials and Reference. This is a very good start.</ref>, but constant searching helps <ref>[http://bonsaiden.github.io/JavaScript-Garden Bonsai Garden], Javascript Examples, Best practices and tutorials.</ref>. | Always I can not find a pleasant and good reference/example of JavaScript code <ref>[http://www.javascriptkit.com/jsref/index.shtml JavaScriptKit], Index, Tutorials and Reference. This is a very good start.</ref>, but constant searching helps <ref name="bonsaigarden">[http://bonsaiden.github.io/JavaScript-Garden Bonsai Garden], Javascript Examples, Best practices and tutorials.</ref>. | ||
== Documentation == | |||
Not a beginners guide and note a reference. '''JavaScript Garden''' (Bonsai Garden) is a growing collection of documentation about the most quirky parts of the JavaScript programming language. | |||
It gives advice to avoid common mistakes and subtle bugs, as well as performance issues and bad practices, that non-expert JavaScript programmers may encounter on their endeavours into the depths of the language. <ref name="bonsaigarden"/> | |||
JavaScript Garden does not aim to teach you JavaScript. Former knowledge of the language is strongly recommended in order to understand the topics covered in this guide. In order to learn the basics of the language, please head over to the excellent guide on the Mozilla Developer Network. | |||
== Cookies == | == Cookies == |
Revision as of 20:01, 24 July 2013
Always I can not find a pleasant and good reference/example of JavaScript code [1], but constant searching helps [2].
Documentation
Not a beginners guide and note a reference. JavaScript Garden (Bonsai Garden) is a growing collection of documentation about the most quirky parts of the JavaScript programming language. It gives advice to avoid common mistakes and subtle bugs, as well as performance issues and bad practices, that non-expert JavaScript programmers may encounter on their endeavours into the depths of the language. [2]
JavaScript Garden does not aim to teach you JavaScript. Former knowledge of the language is strongly recommended in order to understand the topics covered in this guide. In order to learn the basics of the language, please head over to the excellent guide on the Mozilla Developer Network.
Cookies
See for a description on how to cope with JavaScript Cookies
- JavaScript Cookies description
FAQ
- A list of FAQs, Index to a bunch of items.
Redirector
use the lcation object. An example:
<html> <title>CodeAve.com (JavaScript: Current Page URL)</title> <body bgcolor="#FFFFFF"> ... <script language="JavaScript"> <!-- document.write (location.href); document.write ("<p><a href='" +location.href + "'>Link To Current Page</a></p>"); // --> </script> ... </body> </html>
See also
- JavaScript Widgets and Games, mredkj.com is an unfocused resource for programmers in which you'll find code examples, tutorials, and our ramblings.
- JavaScript entry on HF-Links.
- Developer Mozilla, JavaScript Guide Developer.
- Developer Mozilla, JavaScript Refrence
Reference
- ↑ JavaScriptKit, Index, Tutorials and Reference. This is a very good start.
- ↑ 2.0 2.1 Bonsai Garden, Javascript Examples, Best practices and tutorials.