I'm using Backbone with Marionette.
I have a link <a>
tag where I'm passing few parameters, how can I extract those values in other pages using Backbone?
<a href="http://localhost.com:8080/help/?name=matth&age=25&email=matt@gmail.com">View Details</a>
Address Bar url:
http://localhost.com:8080/help/?name=matth&age=25&email=matt@gmail.com 44
Using Php, this is straightforward:
$Url = $_GET['state']."#".$_GET['city'];
How can I achieve it within my Backbone app?