I am trying to test the jQuery Address Plugin and it seems to not allow ajax to work in the change function.
I am using:
$.address.change(function(event) {
$( #content ).load(event.value+ #content );
$.address.title(event.value);
});
$( a ).click(function() {
$.address.value($(this).attr( href ));
});
While I can use event.value for other things, it just does not seem to let the .load() function work. Even trying a static URL in .load() does nothing. Is something in the plugin preventing this? I thought this was the point of the plugin!