How many ways can we save some data on the browser(client) end and retrieve it back even after a refresh: We can use localstorage or sessionstorage Use cookies Rewrite URL(although not elegant, but still can get the job done) Appending/Prepending to the name attribute on the window object You can try opening up any webpage […]

Read More →

AngularJS has grown in popularity over the years. There are a huge number of blogs,videos and tutorials all over the web that delve into finer topics on AngularJS. Here is a list of AngularJS Best Practices and Notes as mentioned on AngularJS Developer Guide Custom directives to access the DOM: In Angular, the only place […]

Read More →

The HTTP Archive provides information about website performance such as # of HTTP requests, use of gzip, and amount of JavaScript. This information is recorded over time revealing trends in how the Internet is performing. Built using Open Source software, the code and data are available to everyone. It is a permanent repository of web […]

Read More →

Javascript being a dynamically typed language, sometimes it helps to know the properties and functions of a given object. Anyone who has worked with javascript in an Object Oriented way would testify this. Here is a snippet of javascript code that would give the Type, member functions and properties of a given object. 1 2 […]

Read More →