NovoGeek's Blog (Archive)

Technical insights of a web geek

Understanding callbacks for chaining JavaScript methods

In continuation with my previous article on creating a chainable JavaScript toolbox, I would like to show how we can leverage JavaScript callbacks for enhanced functionality. As said previously, this is how libraries are designed and the concept is nothing new. This is just an attempt to explain c... [More]

Overriding jQuery/JavaScript functions using closures

Function overriding is an important feature in any programming language. In advanced languages like .NET, Java, it can be accomplished easily through a set of key words. But this is not the same in JavaScript and this is where closures come to your rescue. This article is not something new. Infact... [More]