Wednesday, April 29, 2015

Mustache JS


Mustache JS

In this tutorial I’m going to introduce to you a templating librarycalled Mustache. Mustache is available ina variety of languages including PHP, Ruby, Python, Clojure, Node.js, ActionScript, and of course JavaScript which is the flavor that were gonna be using today. Mustache is a ...

Read More
Anonymous
Unknown Software Engineer

Monday, April 27, 2015

Sorted Array


Sorted Array

Sorting a JavaScript array using array.sort() The sort() method sorts the items of an array.  The sort order can be either alphabetic or numeric, and either ascending (up) or descending (down). By default, the sort() method sorts the values as strings in alphabetical and ascending order. This ...

Read More
Anonymous
Unknown Software Engineer

Saturday, April 18, 2015

Insertion Sort


Insertion Sort

Insertion Sorting  It is a simple sorting algorithm which sorts the array by shifting elements one by one. Following are the important characteristics of insertion sort. 1. It has one of the ...

Read More
Anonymous
Unknown Software Engineer

Sunday, April 12, 2015

JavaScript Date, Time and Live Clock


JavaScript Date, Time and Live Clock

Date, time, and creating a live clock in JavaScript. If you were like me, before I learned JavaScript, one of the most eager things I wanted to know was how to access the time using JavaScript-displaying it, working with it and so on. Well, it was, in fact very easy, and I'll tell you why. JavaScript ...

Read More
Anonymous
Unknown Software Engineer

Monday, April 6, 2015

jQuery Chat


jQuery Chat

By using jQuery we can able to create a chat box (client side). In this article I am  going to show you , how to create a chat box without any plugins. If we write backend coding (like PHP, C#) ...

Read More
Anonymous
Unknown Software Engineer

Saturday, April 4, 2015

jQuery Image Slider


jQuery Image Slider

A slideshow is a series of pictures or pages of information, often displayed on the screen.Image slideshows are most popular method of displaying a larger volume of pictures in websites.By using the jQuery , we can easily create a slideshow of our own, complete with navigation controls. When designing ...

Read More
Anonymous
Unknown Software Engineer

Friday, April 3, 2015

window[] and eval()


window[] and eval()

Both eval and window[] is used to convert string to JavaScript variable or method but little difference is shown below. window[]    This is can access the global variable only   This is the window object.   If the variable is undefined, it will return undefined, but not ...

Read More
Anonymous
Unknown Software Engineer