February 2012
3 posts
jqcached makes DOM selectors caching extremely...
Welcome fellow Javascript code monkeys,
For a while now, I keep on wondering why Javascript frameworks don’t provide an unified way of DOM selectors caching. I’ve been using this homemade jQuery plugin that aids that exact purpose so I decided to share it with you.
We all know the DOM is very slow… slooowww. Usually it is the bottleneck of your Javascript application, so we...
How to create a kick-ass product? What I learned...
Before we begin I want to say that if you have the time, buy and read the book. It’s great source of how-to and how-not-to do a business. It breaks a lot of business myths and builds stable foundation for creating a product the right way.
I’ll write down the key points I found intriguing as a reference to which I can come back. Hopefully it can be helpful to you too.
1. Find your...
How to implement an awesome JavaScript JSONP API...
Recently I was given a project at work which had to get some data from a server on a different domain through JavaScript. We all know that this is not possible because of the same origin policy, however JSONP is here to help us hack around the problem. JSONP stands for JSON with padding and it’s incredibly simple, yet powerful way of requesting data from a server on a different domain.
...