The zxcvbn.js JavaScript Library PRO
The zxcvbn.js JavaScript open source library provides us with a simple easy to use function for evaluating the strength of a password the user enters. Using this library we can provide our user with an immediate feedback. The following code sample shows how simple it is to use this JavaScript open source library. You can […]
Google WebFonts Jump Start PRO
Google WebFonts API provides us with hundreds of open source fonts we can use in our web page. We can easily search through the web fonts collection and select the ones we want to use. The following code sample shows how simple it is to use these fonts in our web page by adding a […]
Datejs Jump Start PRO
Datejs is an open source JavaScript library that assists us writing code that handles dates. You can find it ready for download together with detailed documentation at http://datejs.com. The following code sample shows a simple demo for using this JavaScript open source library by showing how simple it is to add/remove days to/from a date […]
The jQueryMobile Grid Layout PRO
Using the jQueryMobile we can split our screen into columns. We just need to choose in advance the number of columns we want and use the relevant CSS class. Using the ‘ui-grid-a’ CSS class we shall get two columns, using the ‘ui-grid-b’ CSS class we shall get three columns and so on. In order to […]
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 […]
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> […]
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 […]
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> […]