jquery-address
jquery-address copied to clipboard
$('a.rwajax').address().change() is not working
we can't declare for particular dom object , its refreshing the page. i don't want $.address() in some of the pages.
Example:
$('a.rwajax').address.state('/rw2011').init(function(){
$('a.rwajax').address(function(){return getUri($(this).attr('href'));});
}).bind('change', function(event) {
// here loading page stuff
});
its possible to assign the $.address() for specific dom object. please give me suggestion.
The syntax should be the following:
$.address.state('/rw2011').init(function(event) {
$('a.rwajax').address();
}).change(function(event) {
// here loading page stuff
});
ok, but i want to refresh the login page only then it works modern browsers but not working in ie browser. ie browser url like this http://localhost/rw2011/#/sign-up
in this case how to change the code.