document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <script type="text/javascript">
  2.     $(document).ready(function() {
  3.         $(\'#input\').autocomplete({
  4.             source: function(query, response) {
  5.                 $.ajax({
  6.                     url: "/autocomplete.cfc?method=queryNames&returnformat=json",
  7.                     dataType: "json",
  8.                     data: {
  9.                         searchPhrase: query.term
  10.                     },
  11.                     success: function(result) {
  12.                         response(result);
  13.                     }
  14.                 });
  15.             }
  16.         });
  17.     });
  18. </script>
');