This is my controller action...
// GET: ex: /Question/Details/5?project=1
public ActionResult Details(int? project, int? questionId)
{
...
}
This is my Knockout VM:
// Get some other info about question
$(document).ready(function () {
getSomeOtherInfo(<need to pass question id here>, <need to pass project id here>);
});
Any help will be greatly appreciated.