jQuery Event Triggers

We will look at how to trigger an event on specific elements. In a situation where you have multiple handlers, jQuery trigger method allows you to build sophisticated rich applications that can respond to users’ actions in a very fine-tuned manner

Recursion in JavaScript

Recursion is an important programming technique, in which a function calls itself to solve some problem. A method that uses this technique is recursive. Many programming problems can be solved only by recursion, and some problems that can be solved by other techniques are better solved by recursion.