Is this even possible?
Here\'s the problem:
I have a keyword search with this URL(after searching) : http://localhost/thi/search?keyword=key
Then I h
You can use hash urls (search#price=100) with window.location.hash
methods. These will get bookmarked and user can navigate through these with back and forward buttons.
Usage sample:
100
$('a').click(function() {
window.location.hash = 'price='+$(this).html();
return false;
});
Will set the url to search#price=100
without refreshing.