hi everybody,
i've been looking for a solution for few days and never found it.
i'm using the jQuery autocomplete and i want to take the data from a sql table cell.
the table pretty much looks like this :
word_id | | word_q |
1 | where |
2 | when |
3 | who |
4 | how |
i want the "word_q" values to show up in the results
- $(document).ready( function (){
- var data = WORD_Q VALUES GOES HERE ;
- $("#input1").autocomplete(data, {matchContains: true, autoFill: true});
- $("#button1").click(function(event){
- even
- });
i'm using asp.net and therefor i can't use all the php solutions i found.
help please