Difference between revisions of "JavaScript"

From HaFrWiki
Jump to: navigation, search
(Created page with "{{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, Tutoria...")
 
m
Line 30: Line 30:
 
* [http://www.mredkj.com/javascript JavaScript Widgets and Games], mredkj.com is an unfocused resource for programmers in which you'll find code examples, tutorials, and our ramblings.
 
* [http://www.mredkj.com/javascript JavaScript Widgets and Games], mredkj.com is an unfocused resource for programmers in which you'll find code examples, tutorials, and our ramblings.
 
* [http://www.harmfrielink.nl/Links/Links.asp?Keywords=javascript JavaScript] entry on HF-Links.
 
* [http://www.harmfrielink.nl/Links/Links.asp?Keywords=javascript JavaScript] entry on HF-Links.
 +
* [https://developer.mozilla.org/en-US/docs/JavaScript/Guide Developer Mozilla], JavaScript Guide Developer.
 +
* [https://developer.mozilla.org/en-US/docs/JavaScript/Reference Developer Mozilla], JavaScript Refrence
  
 
== Reference ==
 
== Reference ==

Revision as of 19:47, 24 July 2013

Always I can not find a pleasant and good reference/example of JavaScript code [1]

Cookies

See for a description on how to cope with JavaScript Cookies

FAQ

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

Reference

top

  1. JavaScriptKit, Index, Tutorials and Reference. This is a very good start.