Posted on: 8/12/2014 12:36:21 PM | Views : 443

Hi all
I want to add an image in AutoComplete suggestion. I'm using jQuery AutoCoplete Plugin.

HTML
<asp:TextBox ID="txtProductName" runat="server" />
Script
<script type="text/javascript" language="javascript"> $(function () { $('#<%= txtProductName.ClientID %>').autocomplete({ source: function (request, response) { $.ajax({ url: "GetProductService.asmx/GetProductsName", data: "{'ProductName': '" + request.term + "'}", type: "POST", dataType: "json", contentType: "application/json;charset=utf-8", success: function (data) { ...

Go to the complete details ...