Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blankdots/jsexamples
A series of Javascript Examples and experiments
https://github.com/blankdots/jsexamples
javascript mashup
Last synced: 3 days ago
JSON representation
A series of Javascript Examples and experiments
- Host: GitHub
- URL: https://github.com/blankdots/jsexamples
- Owner: blankdots
- License: mit
- Created: 2013-12-09T14:42:23.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-11-05T17:48:09.000Z (about 8 years ago)
- Last Synced: 2023-03-10T21:57:28.435Z (over 1 year ago)
- Topics: javascript, mashup
- Language: JavaScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## jsExamples - Javascript Examples
A small collection of Javascript examples and experiments.
Author: www.blankdots.com
### Examples
1. Userform
HTML5 + Javascript form to collect user information via a Wizard + a XMLHttpRequest example2. Simple Quiz
Simple JSON + Javascript quiz questions example3. Fancy Quiz
HTML5 + jQuery + CSS3 Flash card quiz questions example4. Simple Canvas example
HTML5 Canvas Example with a triangle (possibility to rotate it)5. Mashup
Simple Mashup between openStreetMap + forecast.io + freegeoip.net
Required are jQuery and leafletjs libraries along with API keys for both of them.
The example will not work without the API keys (see source code where to include them).6. Simple WebWorkers example
A simple WebWorkers echo example inspired by https://www.video2brain.com/en/courses/html5-power-workshop -- WebWorkers example7. Fancy Registration Form
A Fancy registration form with regex in the HTML5 pattern attribute, which collects data via AJAX + PHP and displays it. FormData API is being used https://developer.mozilla.org/en-US/docs/Web/API/FormData. Note that an encryption to the password must be added.8. Post-Redirect-Get using PHP
The form from the previous example but this time only a simple PHP design pattern being implemented: Post/Redirect/Get .