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.