I am using c# to get data from database and displaying in textbox (autocomplete).
How can i add link with querystring to my dropdown generated by jquery. i am using following function.
<script src="js/jquery-1.8.3.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery-ui-1.9.2.custom.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/jquery-ui.css" />
<script type="text/javascript">
$(function() {
var availableTags = [ <%= SuggestionList %> ];
$( "#<%= TextBox1.ClientID %>" ).autocomplete({
source: availableTags
});
});
</script>
Thanks in advance.
Go to the complete details ...