QNimate

  • CoursesVideos
  • WP PremiumPlugins
  • DemosLab
  • Home
  • QIdea
  • QTrack
Downloading Files and Showing Progress using Intel XDK

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 […]

Image8 years ago http://qnimate.com/downloading-files-and-showing-progress-using-intel-xdk/
Find Out When Your Email Has Been Read

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 […]

Image8 years ago http://qnimate.com/find-if-email-has-been-read-or-not/
Adding Custom Content to Printed Web Pages

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 […]

Image8 years ago http://qnimate.com/adding-custom-content-to-printed-web-pages-using-css/
Uploading Files and Showing Progress using Intel XDK

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 […]

Image8 years ago http://qnimate.com/uploading-files-and-showing-progress-using-intel-xdk/
Working with File System using Intel XDK

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 […]

Image8 years ago http://qnimate.com/working-with-file-system-using-intel-xdk/
Create an Frontend Editor with Code Highlighting and Execution

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 […]

Image8 years ago http://qnimate.com/create-an-frontend-editor-with-code-highlighting-and-execution/
Push Notifications in Intel XDK using pushMobi

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 […]

Image8 years ago http://qnimate.com/push-notifications-using-intel-xdk/
Disable Copy and Paste in Phonegap

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 […]

8 years ago http://qnimate.com/disable-copy-and-paste-in-phonegap/
WordPress Plugin Activation, Deactivation and Uninstall Hooks

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. […]

8 years ago http://qnimate.com/wordpress-plugin-activation-deactivation-and-uninstall-hooks/
Page 21 of 43« First«...10...1920212223...3040...»Last »
Categories
  • Algorithms (1)
  • API (5)
  • Cloud (1)
  • Cordova (68)
  • Databases (8)
  • Ethereum (3)
  • Hyperledger Fabric (1)
  • Marketing (3)
  • Node.js (3)
  • Operating System (2)
  • Other (1)
  • SEO (15)
  • Tips and Tricks (13)
  • Web Development (184)
  • Web Security (12)
  • WordPress (94)
Most Viewed
  • slider
    Image Slider Using HTML And CSS Only
    60 comments
    9 years ago

  • facebook-chat-popup
    Facebook Style Chat Box Popup using JavaScript and CSS
    73 comments
    8 years ago

  • html5-file-api
    An Introduction To JavaScript Blobs and File Interface
    13 comments
    9 years ago
Most Commented
push-notificaton
Push Notification in Intel XDK using Push Plugin
8 years ago
109 Comments
facebook-chat-popup
Facebook Style Chat Box Popup using JavaScript and CSS
8 years ago
73 Comments
What is Multiplexing in HTTP/2?
8 years ago
61 Comments
Currently Viewed
wordpress-large-website
WordPress For Large Websites
8 years ago
editor
Creating a WYSIWYG Editor
8 years ago
htaccess
Decentralizing Configuration of Webserver using .htaccess
9 years ago
Our Sponsor
My Books

2014 - 2015 © QNimate
All tutorials MIT license