We are using msDropDown plugin to theme drop down control in the page. The plugin was downloaded from www.marghoobsuleman.com
We don't have to apply any function in document.ready or anywhere just adding below reference does it's job.
<script src="../Scripts/jquery.dd.js" type="text/javascript"></script>
But it it applying the style to list boxes as well. here is the script source:
http://www.keendevelopers.in/jquery.dd.js
Is there any way to avoid them applying on List boxes? To avoid this we tried giving css class "elelistbox" to all Listboxes.
<asp:ListBox ID="ListITProgramming" runat="server" CssClass="listViewStyle elelistbox"
SelectionMode="Multiple" OnDataBound="ListITProgramming_DataBound"></asp:ListBox>
Can anyone help?