Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get the value from a select field (dropdownlist) into a "code nugget" using jQuery? I have seen this done, but can't find an example of it now.

I have two dropdownlists, and I want to get the selected values from them and concatenate it into an id parameter to send to an action method:

$.get('<%= Url.Action("GetTasks","Timesheet", new { id = [Concatenated value here] } %>'

How can I get the concatenated selected values from the two dropdownlists with jQuery?

share|improve this question

1 Answer

up vote 1 down vote accepted

You could try something like this:

var url = "<% Url.Action("GetTasks", "Timesheet", new { id = "{0}" }) %>";

var selected = $("#mySelect").val().join(",");
url = url.replace("{0}", selected);

$.get(url);
share|improve this answer
Thanks, I had to change a couple things, but it worked! – Anders Svensson Dec 8 '10 at 9:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.