ASP.NET - Dropdown Problem

Asked By k syam on 10-Dec-12 02:35 AM
Hi all,

 I have a one problem in with Drop down list
      i.e when i open a drop down in first time it will opened and closed,again i am trying to open the drop down list it will be opened,is there any solutions for this problem in my asp.net application

For that i have used below jquery code is there any changes in the code,send me the solution for my problem

          $('.ddToolTip').click(function (el) {
      $(this).find("option:[title='']").each(function (el) {
        $(this).attr("title", $(this).text());
      })
Jatin Prajapati replied to k syam on 10-Dec-12 08:01 AM
Hi,
You question seems to be confusing.

But from your description, I can understand that you want to select multiple items in the drop down.

Actually, DropDown does not provide you multiple selected. Rather you have to use List Box for this purpose.