I am doing following for changing the address in url

    $("ul.data li a").die('click');
    $("ul.data li a").live('click', function()
    {
        $.address.value($(this).attr('rel'));
        $.address.history($(this).attr('rel'));
    });

and i am using

$.address.change(function()
{
      //redirecting according to url
});

but when i click one of then <a> tag, url gets changes but as soon as i refresh the page, url changes to '/home' which is default.

I am using 1.4.2 version of jquery.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.