tags:

views:

20

answers:

1

Is there a jquery plugin for double clicking anywhere in a nuetral area to return to the home page? Double click for a home page link?

Many thanks.

+1  A: 

You can bind to the double click event. Without seeing markup, not sure how you would make a selector for neutral area.

$("NEUTRAL AREA").bind("dblclick", function(){
    window.location.replace("http://yourdomain.com");
});
Dustin Laine

related questions