Sunday, April 1, 2012

hungryminds - Children's library, Chennai

Hungryminds

After nearly 4 months of work, we are now happy to announce that hungryminds - Children's online lending library in Chennai is ready to serve the customers. hungryminds brings great books from around the world for children form 6 Months to 14 years of age. Our plans are very affordable and we have month-month, 3 months and 6 months plans.

How it works

It's simple and convenient.

1. Fill up the registration form at www.hungryminds.in by selecting your plan.

2. After account activation, start adding books to your list.

3. We deliver books at your doorstep for free. We pickup for free as well.

Suggest a Book

Don't find the book you are looking for?. We have a suggestions page for you to suggest books. We do our best to buy the books and deliver it to you.


Saturday, February 21, 2009

jQuery's Trigger function

I found out about the trigger function in jQuery a while back and I love it. Using this we have the ability to "trigger" an event on all the matched element. 
For example, if there is an event-hander for a click event like this,

$("#testButton").click(
function(){
console.log("inside testButton click");
}
);
 
We can use the following code to execute the above event handler as if the click event happened (almost) in the browser.

$("#testButton").trigger("click");

The one cavet is if you trigger an event which uses the position (x,y coordinates) or keycode (enter key etc.,) you may get error, since those are not passed when using the trigger function.