im trying to understand how to use the jquery address plugin for handling deep linking with ajax.
but the documentation is very poor and i cant find any good tutorials explaining what is going on.
i think a good documentation with good examples is important with every plugin.
could someone explain or give some useful links for explanation?
$.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'));
});
i mean, what does $.address.value do? it says "Provides the current deep linking value." what does it even mean? and what does it do with it?