This post is a part 29 of Intel XDK Complete Tutorial post series. In this tutorial I will show you how to download files using Intel XDK and also show the download progress. To achieve this functionality we don’t need to use any plugin or JavaScript library. We can get this functionality using XMLHttpRequest 2 […]
In this article I will introduce you to QTrack online service which lets you find you find if email was read or not. Pre-requisites To use QTrack you must be using a EMail client which supports sending of email in HTML format. And also the recipient must use HTML supported email client to view the […]
In this tutorial I will show you how to add custom text to a printed web page using CSS and JavaScript. We can do this using CSS3 by using Pseudo Elements and Generated Content. We can do this using JavaScript by using onafterprint and onbeforeprint. Adding Image to the Printed Web Page using CSS This […]
This post is a part 28 of Intel XDK Complete Tutorial post series. In this tutorial I will create a sample app which uploads a file to webserver using Intel XDK file upload API and also shows the percentage of file upload. I will also show how to write a backend PHP script to handle […]
This post is a part 27 of Intel XDK Complete Tutorial post series. In this tutorial I will introduce you to APIs using which you can work with the device filesystem. Filesystem APIs will help you create audio, images, cloud etc applications. Cordova File API There is actually no Intel XDK plugin/API to work with […]
In this tutorial I will show you how to create a online code editor like Codepen, jsFiddle, repl.it etc. After reading this tutorial you will be able to create such kind of awesome tools with just few lines of code. Let’s see a demo of what we will be creating in this tutorial. View Demo […]
This post is a part 25 of Intel XDK Complete Tutorial post series. In this tutorial I will show you how to implement cross platform push notifications in Intel XDK app. In this tutorial I will show how to integrate push notification in a Legacy Hybrid apps using pushMobi. If you want to integrate push […]
This post is a part 24 of Intel XDK Complete Tutorial post series. While this snippet of CSS you can easily disable copy/paste in phonegap app: * { -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } input { -webkit-user-select: auto !important; -khtml-user-select: auto !important; -moz-user-select: auto !important; -ms-user-select: auto !important; user-select: auto […]
Let’s see how we can run code when our plugin is activated, deactivated or uninstalled. Plugin Activation Action Hook Using register_activation_hook function we can register a function which will be executed when a plugin is activated. Put the below code inside <?php function plugin_activated() { //put activation code here. } /* Parameters: 1. […]
Most Commented