ASP.Net MVC: Creating an AutoComplete with Images for profile with MVC and Jquery
Sometime we need to create a autocomplete textbox in our projects, whihc containes images of the user. whether its MVc or Asp.net. JqueryUI have a control for this and you can leverage to make your wish fullfil. its need a Array of data. Here is the solution how to do that. You need to take the reference of the latest jqueryui script. On the View < input type ="text" id ="txtUserSearch" /> < script type ="text/javascript"> $(document).ready( function () { $( '#txtUserSearch' ).autocomplete({ source: ' @ Url.Action( " GetMatchingUser " , "Home" ) ' , minLength: 1, select: function (event, ui) { window....