When using Meteor JS, I have a get function set up like this:
localhost:3000/profile?user=rishav
I am now trying to access the value of user in a Meteor JS template. When dealing with post data, we can use event.target.blah.value; where blah is the id. However, how can we achieve this with get data?