QNimate

  • CoursesVideos
  • WP PremiumPlugins
  • DemosLab
  • Home
  • QIdea
  • QTrack

Web Development 184

ES6 Reflect API Tutorial

This post is a part 18 of ECMAScript 6 Complete Tutorial post series. Object reflection is an language ability to able to inspect and manipulate object properties at runtime. JavaScript already had been supporting APIs for object reflection but these APIs were not organized under a namespace and also they threw exception when they fail […]

7 years ago http://qnimate.com/es6-reflect-api-tutorial/
Generate Unique Number in JavaScript

Here is the code that can generate a unique number in JavaScript. function uniqueNumber() {     var date = Date.now();         if (date <= uniqueNumber.previous) {         date = ++uniqueNumber.previous;     } else {         uniqueNumber.previous = date;     }     return […]

7 years ago http://qnimate.com/generate-unique-number-in-javascript/
JSON.parse() throws “unexpected token” error for valid JSON

Although your JSON string is valid JSON.parse is likely to throw error. This is because JSON.parse cannot parse some special characters that are \n, \t, \r and \f. You need to escape these special characters for before passing JSON string to JSON.parse function. Here is a function that takes a JSON string and escapes the […]

7 years ago http://qnimate.com/json-parse-throws-unexpected-token-error-for-valid-json/
AngularJS Example APP Project

AngularJS is suitable for creating AJAX based dynamic applications and applications which require a lot of DOM content manipulations. For example: AngularJS is the best way for creating single app websites. AngularJS helps you to build such kinds apps with less code and more flexibility. Example Here is an AngularJS example app which covers almost […]

7 years ago http://qnimate.com/angularjs-example-app-project/
AJAX Request Example

Here are example codes showing how to make a basic GET and POST request using XMLHttpRequest object GET Request using XMLHttpRequest Here is an example which works on all devices and browsers var request; if(window.XMLHttpRequest) {   request = new XMLHttpRequest(); } else if(window.ActiveXObject) {   try   {     request = new ActiveXObject(’Msxml2.XMLHTTP’); […]

7 years ago http://qnimate.com/ajax-request-example/
Create a Crawlable AJAX Website using PHP

AJAX websites tend to be much faster as it’s about updating parts of a web page, without reloading the whole page. AJAX lets web pages to update asynchronously by retrieving data from server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page. But […]

7 years ago http://qnimate.com/create-a-crawlable-ajax-website-using-php/
JavaScript Scroll by Dragging

By default desktop browsers let you scroll an element or page using the mouse wheel. But its unfriendly when users want to scroll both horizontally and vertically. Mouse wheel doesn’t seem to be the best option in that case. Therefore we can let users scroll by holding the mouse button i.e., dragging. For example, Google […]

7 years ago http://qnimate.com/javascript-scroll-by-dragging/
Number Counter Animation using Javascript

Number counter animation is used throughout the web to display numbers in a more interesting and eye-catching way. For example: Websites use number counter animations to display total number of shares and views of an article. In this tutorial I will show you the easiest way to create such animation using JavaScript. countUp.js Library We […]

7 years ago http://qnimate.com/number-counter-animation-using-javascript/
Facebook Style Infinite Scroll

Facebook loads new posts on timeline and news feed as you scroll down. This makes Facebook home page and profile load faster as Facebook don’t have to load everything on page load. For achieving this Facebook uses a technique called as Infinite scrolling. In this tutorial we will see how to achieve infinite scroll using […]

7 years ago http://qnimate.com/facebook-style-infinite-scroll/
Page 1 of 2112345...1020...»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?
7 years ago
61 Comments
Currently Viewed
HTTP/2 Compatibility with old Browsers and Servers
7 years ago
WordPress Settings API Validation and Sanitization
7 years ago
triangle-circle-css
Creating Triangles And Circles Using CSS
8 years ago
Our Sponsor
My Books

2014 - 2015 © QNimate
All tutorials MIT license