Here's a bit of javascript that uses query strings. It parses the query string into a dictionary object called params, tests if a certain parameter was passed, and if it was passed it fills in a couple of input boxes with the passed values.
var params = window.location.search.toQueryParams();
  if (!(params.dt===undefined)) // Was the 'dt' param passed?
  {
    $('date').value = params.dt;
    $('amount').value = params.amount; // assume the 'amount' was given
  }

Thanks for reading! And if you want to get in touch, I'd love to hear from you: chris.hulbert at gmail.

Chris Hulbert

(Comp Sci, Hons - UTS)

iOS Developer (Freelancer / Contractor) in Australia.

I have worked at places such as Google, Cochlear, Assembly Payments, News Corp, Fox Sports, NineMSN, FetchTV, Coles, Woolworths, Trust Bank, and Westpac, among others. If you're looking for help developing an iOS app, drop me a line!

Get in touch:
[email protected]
github.com/chrishulbert
linkedin
my resume



 Subscribe via RSS