[jQuery] Re: selecting multiple selects

2009-05-22 Thread dezok714
didit hanks. On May 21, 6:15 pm, MorningZ wrote: > $("select.sortby").change(function() { >       window.location = "http://..."; + "&order=" + $(this).val(); > > }); > > On May 21, 7:10 pm, dezok714 wrote: > > > I am writing a sortby function that uses two "select"s on the page and > > dig

[jQuery] Re: selecting multiple selects

2009-05-21 Thread MorningZ
$("select.sortby").change(function() { window.location = "http://..."; + "&order=" + $(this).val(); }); On May 21, 7:10 pm, dezok714 wrote: > I am writing a sortby function that uses two "select"s on the page and > digs out the option val and submits the page for a new view. You can >