I'm using meteor to build a web app that shows stock information. I currently have a input on the client side which takes in text. The input is hooked up to a Lookup API by Markit on Demand. This is the code:
Template.LookupTemplate.onRendered(function() {
this.$("#Lookup")
.focus()
.autocomplete({
  source: function(request,response) {
    $.ajax({
      url: "http://dev.markitondemand.com/api/v2/Lookup/jsonp",
      dataType: "jsonp",
      data: {
        input: request.term
      },
      success: function(data) {
        response( $.map(data, function(item) {
          return {
            label: item.Name + " (" +item.Exchange+ ")",
            value: item.Symbol
          }
        }));
      },
      minLength: 0,
              select: function(event,ui ) {
        console.log(ui.item);
      }
    });
  }
});
}); //Closing tag of LoookupTemplate.onRendered
How do I capture the selection by the client? When the user starts typing a company name, the jquery autocomplete kicks in and gives the client a list of options to select from. Once the user selects it and hits "enter" (submits it), the page reloads to
http://localhost:3000/Overview?stockname=AAPL
How do I capture that input (AAPL in this case) and then pass it to another function that builds a chart for that particular stock?
--Router.js
Router.configure({
// This is the default layout/top-level template layoutTemplate: 'layout' });
Router.map(function() {
    this.route('/', {
        path: '/',
        action: function() {
            this.redirect('landingpage')
        document.title = 'Cash'
    }
    });
  // Route for the landing page when user is not logged in
    this.route('landingpage', {
        path: '/landingpage',
        after: function() {
        document.title = 'Cash'
    }
    });
// Route to our main app. Note that I use / path as I treat this as default behavior
    this.route('/Overview', {
        path: '/Overview',
        after: function () {
            document.title = 'Cash';
        }
    });
})
 
     
    