I just started working with Backbone.js and wondered how I can send parameters using Backbone.history.navigate ? I currently have the following:
Backbone.history.navigate("classrooms", true)
This sends the page to page:
http://localhost:3000/profile
I want the url to look like this:
http://localhost:3000/profile
What syntax would I use for this?
Thanks!
source share