Sandeep Kumar Patel's Blog, page 7
June 11, 2014
Enabling Web Component Feature in FireFox

On this day 12th June 2014, Web Component Feature are yet to come in the browser.It is now is an Experimental feature for many latest browser.document.registerElement() function is not a default DOM function as of today in Firefox.In this Demo, "We will see How to enable the web componen...
Published on June 11, 2014 12:26
May 23, 2014
Google Currency Converter Demo With Eclipse Java Project

Google provides a Currency Converter API services for Consumption by Client Application.The link for this library is listed below:- https://code.google.com/p/currency-converter-api/The maven dependecy tag to include this library is listed below.<dependency>
<groupId>com.tunyk.currencyconverter</groupId>
<artifactId>currency-converter-api</artifactId>
<version>1.0</version>
</dependency>
In this Demo, "We wil...
Published on May 23, 2014 13:21
May 2, 2014
Web Sockets with Socket.IO And Node.JS

io.so...
Published on May 02, 2014 12:49
April 25, 2014
Exploring Parallel JS Library For Multi-Core Processing

Published on April 25, 2014 10:06
April 19, 2014
Chrome FPS Counter

GPU stands for Graphical Processing Unit.This Unit of the computer is responsible for optimal rendering of graphics items like images and animation on the screen.Traditional HTML and CSS used to be rendered by the CPU only.But In latest UI specifications like CSS3 there are some properties which can trigger the GPU to work.The major advantage of this technique is...
Published on April 19, 2014 11:41
March 17, 2014
Jquery Template With Bootstrap Panel


The tempate use ${} for substitute real value in markup.The tmpl() create the template build as Jquery function to attach data.The JSON file used for the demo is in demo.json file.It is listed below. [
{
"titl...
Published on March 17, 2014 09:24
March 13, 2014
Set up Bootstrap SCSS In Project Using Bower

BOWER is the package manger for web projects.Using Bower We can install different library to our project.In this Demo, " We will learn to install Bower using NPM. Followed by installing Bootstrp SCSS version and using it in a projec t".Bower Installation is done using npm install -g bower.Check the below screenshot.


Published on March 13, 2014 11:59
February 16, 2014
Upload Image And Preview in Browser

2. Initialize the Reader.
3.Attaching "onload" event to reader and in callback change the SRC val...
Published on February 16, 2014 10:11
December 31, 2013
Getting Started With Foundation Framework

ZURB provides a Foundation framework for Mobile First Designing.Some Beneficial Features :- -- Semantic Code. -- More Mixin For Use. -- More Place Holder Classes.The Foundation can be downloaded from the following URL:- ...
Published on December 31, 2013 07:57
December 20, 2013
Jquery Attribute Based Element Selection

Find All element having a attribute named <attributename>.
[<attributename> = <"value">]
Selects elements that have the specified attribute with a value exactly...
Published on December 20, 2013 07:32