Sandeep Kumar Patel's Blog, page 8
November 25, 2013
JavaScript Array Methods Example

/*Concat : Combines two array*/
getConcatResult:function(array1,array2){
return array1.concat(array2);
},
/*Shift : Removes the First Element of the array*/
getShiftResult:function(array){
return array.shift();
},
/*UnShift : Adds new elements at th...
Published on November 25, 2013 09:39
November 22, 2013
Using Jquery Proxy Mechanism

--This method is wrap...
Published on November 22, 2013 09:43
November 20, 2013
Using Nth Child Selector in CSS And Jquery

<li>sandeep</li>
<li>sandeep</li>...
Published on November 20, 2013 08:06
November 18, 2013
Event Namespace in Jquery
Jquery provides custom events using namespace. A Event Callback method can be attached with a custom event to a HTML element.A namespace can be created and used to a event using dot operator. In this Demo,"We will attach a click event with namespace for all the LI elements inside a Un-Ordered List". Below code shows a namespace 'StudentName' attached to click event for LI element followed by a css color change to red.$('.student-container li').on('click.StudentName', function (e) {
cons...
cons...
Published on November 18, 2013 08:00
November 17, 2013
2-State Custom Animation Using From-To Pair

Published on November 17, 2013 09:18
November 10, 2013
Jquery Promise Object For Asynchronous Method Handling

This is where we see the problem as:-
--Browser does not wait for asynchronous method to compl...
Published on November 10, 2013 10:03
November 4, 2013
Getting Started With Tornado Web framework

---Web Sockets.
---Maximum Polling .
In this Demo, "We will learn about installing the tornado site package wit...
Published on November 04, 2013 09:53
October 16, 2013
Asynchronous File Upload With Bootstrap Progress Bar Indicator

To know about basics of this plugin checkout my previous post where i have shown a demo for asynchronous form upload. In This Demo, " We will see a File upload with a BOOTSTRAP progress bar indicator ". Some of the facts of this demo:- ...
Published on October 16, 2013 10:57
October 14, 2013
HandleBar Control Statements

Published on October 14, 2013 04:51
October 13, 2013
Comment And Path Expression In HandlebarJS

Published on October 13, 2013 12:36