navigate route with querystring
You need to add another route with that expecting parameter : routes: { ‘posts?foo=:foo’ : ‘showPosts’, ‘posts’: ‘showPosts’ }, showPosts: function (foo) { if(typeof foo != ‘undefined’){ // foo parameters was passed } test = true; } update You could define the general route to return all the query string and then parse it in … Read more