The jQueryMobile Touch Events PRO
The jQueryMobile library enables us to hook up with various types of events. The touch events is one of them. The following code sample shows how to do it in order to handle the taphold event. <!DOCTYPE html> <html> <head> <title>My Cycling</title> <link rel=”stylesheet” href=”http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css” /> <script src=”http://code.jquery.com/jquery-1.9.1.min.js”></script> <script src=”http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js”> </script> </head> <body> <div data-role=”page” […]
Mandatory Movies for Learning Java Programming PRO
Learning how to write code in Java has never been simple. Hereto a short list of recommended movies you better watch before you start learning Java. Learning OOP is one of the biggest obstacles. Matrix is the best movie to start with. The program running on the machines servers creates a sophisticated virtual reality. When […]
PouchDB Jump Start PRO
PouchDB is a small JavaScript library that provides us with the functionality of a document oriented database. We can use it both on the server and on the client. The following is the code that I was using in this video clip. Make sure you update the link to the PouchDB JavaScript file before you […]
The yepnope.js JavaScript Library PRO
The yepnope.js is a JavaScript library that allows us an asynchronous conditional resource loading in according with conditions been tested on the client side. The following is the code that I was using in this video clip. Make sure you update the link to the JavaScript files before you run it. <!DOCTYPE html> <html> <head> […]
TaffyDB Jump Start PRO
TaffyDB is a small JavaScript library that provides us with the functionality of a document oriented database. We can use it both on the server and on the client. The following is the code that I was using in this video clip. Make sure you update the link to the TaffyDB JavaScript file before you […]
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 […]
JSZip.js Jump Start PRO
JSZip.js is a JavaScript framework for creating, editing and reading ZIP files. Useful both on the server and on the client this JavaScript is intutitive and easy to learn. The following video clip goes over the currently available types of charts you can create using moris.js framework. The following video clip goes through the very […]
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 […]
Creating HTML Elements in Dart PRO
Dart allows you to create new HTML elements and add them to the web page. There are two ways for doing it. The following code sample shows how to do it. The code sample includes two files. The first is the HTML file. The second is the Dart file. Once the web browser loads the […]
Howler Jump Start PRO
The Howler JavaScript library assists us with adding sound into our web pages. The following video clip shows the very basics of using this framework. The code sample in this video clip together with the MP3 file I am using can be downloaded at http://www.abelski.com/courses/howler/howlerdemo.zip. The MP3 file was downloaded from http://www.classiccat.net. <!DOCTYPE html> <html> <head> […]