0

I have an .aspx page with a databound multi-select jquery dropdown. This works nicley but how can i get hold of the selected items in the code behind?

1
  • Please edit your question to tell us which specific plug-in you're using. Commented Apr 23, 2010 at 17:51

2 Answers 2

1

You can get Select Items by using below Code and store this selected item in an array for further need.

var phddoc = new Array();
            $.each($("#phddoct").next().find('input').filter(':checked'), function() {
                phddoc.push($(this).val());


            });

here 'phddoct' is the id of the select box[multiselect object]

best wishes.. shareef m2d

Sign up to request clarification or add additional context in comments.

Comments

-1

You can use jquery dropdown cheklist. Here is how you can get selected items http://dropdown-check-list.googlecode.com/svn/trunk/doc/dropdownchecklist.html see line 261.

1 Comment

I added the link to their current demo page.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.