Myself and my team are currently developing a user inbox within a dynamic website. The inbox navigates between messages and mailboxes using ajax in order to create a more responsive atmosphere. The approach is working and everything is in its proper place, but we have come upon a problem with usability in that the back/forward browser buttons of course do not honor any of the ajax states. The natural next move was to search SO and google for a feasible solution.
The site uses jQuery everywhere for its client side framework, so I came across the jquery address plugin by Asual. The plugin looks as though it creates some awesome options for deep linking, but I am having hard time understanding how it handles the changing of pages within the existing jquery events and therefore cannot decide whether this will be overkill for our purposes.
The documentation gives this example, which they generally bind to click on links of a particular rel attribute:
$.address.change(function(event) {
// do something depending on the event.value property, e.g.
// $('#content').load(event.value + '.xml');
});
$('a').click(function() {
$.address.value($(this).attr('href'));
});
My problem is that so much of our existing code for navigation leverages the existing Jquery getJSON function. Most of the handlers do something like fetch json objects that are encoded by php (mailbox object with a property full of message objects) and then builds interactive markup complete with prebound event handlers into the page. We aren't utilizing HTML elements that natively change the browser event in certain circumstances (clickable li elements and other custom UI built by the team designer.)
How could actions such as these be built into the existing system without utilizing anchor tags that modify the address? Are we better off simply making any such event handler do something like location.href() in addition to its usual functionality so it changes the address and thereby logs a state? Also, do you think this is overkill for purposes of an inbox? I'm interested in it for its potential in other parts of the site (galleries deep-linking, etc) and so my purposes for implementing it here are a good chance to cut teeth on how it works. Can anyone who has worked with this plugin provide some constructive guidance on how to make it universally handle generic javascript events and fire those code blocks based off of state?
Thanks much as always!