Javascript 51
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 […]
Jquery Template With Bootstrap Panel
Jquery Template(jquery.tmpl.min.js) can be downloaded from following link, https://github.com/BorisMoore/jquery-tmpl In this Demo,“We will see how jquery template work.The data is JSON data and loaded through AJAX call”. The project Structure: The tempate use ${} for substitute real value in markup. The tmpl() create the template build as Jquery function […]
Upload Image And Preview in Browser
In this Demo, “We will upload a image file to browser and preview it without uploading to a server”. The steps to preview of an images:- 1. Adding a change Event to “input type file” and listening in a callback function. 2. Initialize the Reader. 3.Attaching “onload” […]
Jquery Attribute Based Element Selection
Jquery provides element selector using attribute condition.This is very handy for developers for element selection from document. In this Demo, “we will see a how these attributes selector can be used for DOM element selection”. List of these attribute selector are as below, [<attributename>] Find All element having a attribute named <attributename>.[<attributename> = <“value”>]Selects elements […]