This post is a part 4 of Premium WordPress Plugins post series. WordPress Post Series plugin lets you organize WordPress posts in an customized series. I am using this plugin on QNimate extensively to create courses by organising posts. This plugin can also be used to split large articles. Here is a video which shows […]
This post is a part 9 of ECMAScript 6 Complete Tutorial post series. for of loop was introduced in ES6 which allows you to easily iterate over elements of an collection.for of iterates over the values of elements of a collection not the keys. A collection can be an array, set, list, custom collection object […]
This post is a part 47 of Intel XDK Complete Tutorial post series. Google Analytics is the World’s best website analytics platform. You can also integrate Google Analytics in Intel XDK apps to find usage information of your app. In this tutorial I will show you how to integrate Google Analytics in an Intel XDK […]
In this article I will you through complete steps on how to develop a theme using Underscores. I will explain what files comes with underscores and the code in them. By the end of the tutorial you will learn enough to use underscores for creating a WordPress theme. Starter Theme vs Theme Framework Before we […]
In this tutorial we will see how to create a typing effect using JavaScript and CSS3. A typing effect is eye catching therefore visitors will surely read whats being typed. This can be used for to convey important messages. Even speech to text web apps use this effect. Using TheaterJS We will use TheaterJS library […]
In this tutorial I will show you how to create a Facebook type of face detection and tagging system using JavaScript. There are many other sites which have auto face detection built in. Let’s get started Loading JavaScript Face Detection Library We will use Face Detection JavaScript library to find the coordinates and size of […]
This post is a part 1 of Advanced JavaScript APIs post series. Proximity API is available in mobile browsers only that’s because this API require sensors to measure distance which is available only on mobile phones. Proximity API is used to detect if an object is nearby the device. For example: If you want to […]
This post is a part 2 of Advanced JavaScript APIs post series. Battery status API can be used in mobile and desktop browsers. It gives us the battery status(charging or not) and level(percentage remaining). window.navigator.batter property is the heart of Battery status API. var battery = navigator.battery || navigator.webkitBattery || navigator.mozBattery || navigator.msBattery; if(battery) […]
In this tutorial we will look at how to create a github style markdown editor with preview button. Github’s markdown editor is used to edit the README.md file. This file contains getting started information about the github repository. Using EpicEditor EpicEditor is a JavaScript Library which can embed a mardown editor in an webpage. In […]
Most Commented