Lightbox Jump Start PRO
Lightbox is a small JavaScript library that allows us to overlay series of images on top of our web page. Lightbox was developed by Lokesh Dhakar, it uses jQuery and modernizr and is available for free. The following video overviews this library using the examples we can find in its official website at http://lokeshdhakar.com/projects/lightbox2. The following […]
Moment.js Jump Start PRO
Moment.js is a simple tiny JavaScript library that assists us with parsing, formatting and manipulating date values. Using the Moment.js JavaScript library usually involves with calling the moment() function that returns a reference for a new object that represents the current time. The code shown in this video clip is available below. Make sure you […]
books
Books Mastering Code Through Words: My Programming Books The first three books I published were in Hebrew and they were created in order to assist students in their studies. I wrote them in order to assist students that took courses in Micro Economics. I published them in 1996 following my experience teaching Micro Economics courses […]
Adapt.js Jump Start PRO
Adapt.js is a simple tiny JavaScript library that allows you to develop web pages that automatically adjust themselves to the web browser screen size. The Adapt.js library dynamically checks the width of the web browser and serves the CSS file for that width. The following video shows how simple it is to use this library […]
Barousel.js Jump Start PRO
Barousel.js is an intuitive, sleek and simple framework for creating charts. Unlike many other similar frameworks this one is available with a bit more flexible open source license. The following video clip goes over the Barousel showcase you can find in Barousel official website. The following video clip goes through the very first steps you […]
Moris.js Jump Start PRO
Moris.js is a simple basic JavaScript library for creating good looking charts. Moris.js uses jQuery and Raphael. The following video clip shows how to create a simple chart using this library. The following code sample is the one the video clip overviews. You can find more code samples at moris.js website. <!DOCTYPE html> <html> <head> […]
Smoke.js Jump Start PRO
Smoke.js is an intuitive, sleek and simple framework for creating dialog messages of different types including alert, confirm and quiz. The following video clip goes through the very first steps you need to complete in order to use this library. The code shown in this video clip is available below. Make sure you fix the […]
Twitter Bootstrap Jump Start PRO
Twitter Bootstrap is an intuitive, sleek and powerful framework for developing the client side of our web application. It allows a simple and a faster development. The following video clip goes through the very first steps you need to complete in order to use this responsive highly attractive framework. The code shown in this video […]
Google Maps JavaScript API v3 Jump Start PRO
Using the Google Maps Javascript API we can embed Google Maps in a web page we develop and develop code that interacts with it. The following three video clips overview the very basics of using this API, starting with obtaining the key, creating a simple map and placing markers on it. I have just complete […]
QUnit Jump Start PRO
The QUnit framework allows us to develop unit tests for code developed in JavaScript. The following video clip overviews a simple demo for using this framework. The following is the code sample this video clip overviews. The QUnit website includes detailed documentation and code samples for using this framework. <!DOCTYPE html> <html> <head> <title>QUnit Demo</title> […]