Post archive for ‘Web Design’
Evaluating JSON Data
Evaluating JSON data is the most fundamental and common use-case for any modern ajax based web application. The most commonly used method to evaluate json strings has always been eval() but there are few other methodologies that I have learnt recently.
1. eval()
var jsonData = window["eval"]( "(" + jsonString + ")" );
Support: All Browsers variants
2. new Function()
var [...]
30 Best CSS Examples
The best way to learn CSS is through trying out or learning from what others have tried. Recently, I chose the later to understand CSS better. Of the many lying out there on the internet, I found this link the best suited for different approaches of modern CSS techniques
30 Exceptional CSS Techniques and Examples
Hope these [...]
Tutuorials for Advanced JavaScript
These are the best tutorials out there, don’t miss these if you are/wannabe javascript programmer. ( Hold your nerves untill these videos load. )
PS: [...]