Re: (ot) jQuery Select

2013-06-06 Thread Dakota Burns
Tested a bit more this AM -- thanks Matt! Works as you specified. Appreciate the help! ~ Dakota On Wednesday, June 5, 2013, Matt Quackenbush wrote: > > First you're telling the window to move to the new URL before the submit > line. This means that the submit is never reached in the processing

Re: (ot) jQuery Select

2013-06-05 Thread Dakota Burns
Thanks for the response ... doesn't work as I'd hoped. On Wed, Jun 5, 2013 at 12:41 PM, Matt Quackenbush wrote: > > First you're telling the window to move to the new URL before the submit > line. This means that the submit is never reached in the processing cycle. > > Next, when you remove the

Re: (ot) jQuery Select

2013-06-05 Thread Matt Quackenbush
First you're telling the window to move to the new URL before the submit line. This means that the submit is never reached in the processing cycle. Next, when you remove the location change, "nothing happens" because you're explicitly saying to do nothing. Remove the function from the submit() an

(ot) jQuery Select

2013-06-05 Thread Dakota Burns
I am trying to use an HTML Select form component to select & go to a URL. I'm using the attached jQuery to accomplish this. The selection opens a new window to the intended URL but the submit function doesn't post the hidden name/value pairs. I suspect my syntax is a bit in conflict since the subm