SHOW:
|
|
- or go back to the newest paste.
1 | <script type="text/javascript"> | |
2 | $(function() { | |
3 | $(".auto").autocomplete({ | |
4 | - | source: "search.php", |
4 | + | source: function ( req, res ) { |
5 | $.ajax( { | |
6 | url: "search.php", | |
7 | dataType: "jsonp" | |
8 | } ); | |
9 | }, | |
10 | minLength: 1 | |
11 | }); | |
12 | ||
13 | }); | |
14 | </script> |