I'm using jQuery Address to handle deep linking with my AJAX application. My URLs are in the format: example.com/#/section/item/param/param/param... I have it setup with the .change() listener to handle different parts of the URL. So /project/my-project/view-item/2/compose would slide open the compose box under that project and that item. The problem is, whenever the URL gets changed to that, every action up to that point is called. (Actions that happen when the URL is just /project/my-project get called and so on.)
What is the best way to handle just the action I want without "going up the chain"?