Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
I guess you have to use $.address.value() instead of event.value – jantimon Nov 12 '09 at 17:26
That is not helping. The ajax functions are still not working. – Nic Hubbard Nov 12 '09 at 19:09

1 Answer

up vote 0 down vote accepted

Try using event.pathNames instead, I think you cant get this to work because you are not replacing the "/" from the value. Using event.pathNames you dont have to do that....

$('#content').load(event.pathNames+'.htm #content');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.