For this I need to have jquery.ddslick.min.js in my solution.
The following is my aspx code:
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="jQueryImagesInDropDown.Default" %>  
- <!DOCTYPE html>  
- <html xmlns="http://www.w3.org/1999/xhtml">  
- <head runat="server">  
-     <title>jQuery: Showing Images in Drop Down List</title>  
-     <script src="Scripts/jquery-2.1.4.min.js"></script>  
-     <script src="Scripts/jquery.ddslick.min.js" type="text/javascript"></script>  
-     <script type="text/javascript">  
-         $(function () {  
-             var ddlData = [  
-             {  
-                 text: "Facebook",  
-                 value: 1,  
-                 description: "Facebook",  
-                 imageSrc: "Social/facebook.png"  
-             },  
-             {  
-                 text: "Twitter",  
-                 value: 2,  
-                 description: "Twitter",  
-                 imageSrc: "Social/twitter.png"  
-             },  
-             {  
-                 text: "LinkedIn",  
-                 value: 3,  
-                 description: "LinkedIn",  
-                 imageSrc: "Social/linkedin.png"  
-             },  
-             {  
-                 text: "Google+",  
-                 value: 3,  
-                 description: "Google+",  
-                 imageSrc: "Social/GooglePlus2.jpg"  
-             },  
-             {  
-                 text: "c-SharpCorner",  
-                 value: 4,  
-                 description: "A Community For Professional",  
-                 imageSrc: "Social/cSharp.png"  
-             }  
-             ];  
-             $('#ddlSocial').ddslick({  
-                 data: ddlData,  
-                 width: 300,  
-                 imagePosition: "left",  
-                 onSelected: function (selectedData) {  
-                       
-                 }  
-             });  
-         });  
-     </script>  
- </head>  
- <body>  
-     <form id="form1">  
-         <div>  
-             <div id="ddlSocial"></div>  
-         </div>  
-     </form>  
- </body>  
- </html>  
 The following is the image and script in my solution:
![Script]() Figure 1
Figure 1.
Now run application:
![facebook]() Figure 2
Figure 2.
![select item]() Figure 3
Figure 3.
Select any item.
![Linkedin]() Figure 4
Figure 4.
![C sharp corner]() Figure 5
Figure 5.