What is the recommended approach to navigate between pages inside single html. for example there are placeholders for list page(#listId) content and for details page (#detailsId) content. Should we use jquery show/hide to #listId or #detailsId with canjs routing mechanizm?
Does canjs support simmilar approach http://api.jquerymobile.com/jQuery.mobile.changePage/?
It will be better if you use the canjs routing, in that way users can copy the link for that page and it will show the correct content when shared. So you could have a control that looks something like:
Alternatively, you can have a can component on the page that binds to can.route, but I don't have an example for that.