If you want to know how many of your users are blocking ads of your website then paste this code in your website. This code sends the tracked data to your Google Analytics account. To run the below code you need to make sure that the webpage has Google Analytics tracking code embedded. <script> window.addEventListener("load", […]
Here is the list of awesome WordPress premium plugins. These plugins will surely help you to grow your WordPress site. All these plugins are regularly updated and complete support is provided. All the plugins below are premium plugins.
This post is a part 10 of ECMAScript 6 Complete Tutorial post series. ECMAScript 6 specification introduced a new JavaScript feature called as JavaScript Generators. JavaScript’s yield keyword and function*() syntax together make JS Generators. In nutshell JavaScript generators provide a new way for functions to return a collection and also a new way of […]
In this tutorial I will tell you the difference between foreach, for of and for in loops. A collection is an object which contains a group of elements. For example: arrays, set, list, custom collections etc. foreach is an method that is available only in Array objects. It allows you to iterate through elements of […]
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 8 of ECMAScript 6 Complete Tutorial post series. ECMAScript 6 provides a new way to create functions which just contain one line of statement. This new type of function is called lambda or arrow function. Here is how to create a arrow function //sum is the function name //x and […]
There are two ways to take date input in HTML. Using HTML5 “date” type input field. HTML5 date input is not supported in old browsers therefore you can use HTML5 Date Input Polyfill. Here is an example code of date input field <input type="date"> You can also use jQuery or JavaScript libraries to take date […]
This post is a part 7 of ECMAScript 6 Complete Tutorial post series. ECMAScript 6 introduced “class” keyword to define classes in JavaScript. Earlier to ES6, we had to use constructor function. Here is an example code on how to define classes and then how to create objects of those class types i.e., instances of […]
Most Commented