Guest User

Untitled

a guest
Jun 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <script>
  2. $(document).ready(function () {
  3. $('.search_box').typeahead({
  4. source: function (query, result) {
  5. $.ajax({
  6. url: "/p/autosearch",
  7. data: 'q=' + query,
  8. dataType: "json",
  9. type: "post",
  10. success: function (data) {
  11. result($.map(data, function (item) {
  12. return item;
  13. }));
  14. }
  15. });
  16. }
  17. });
  18. });
Add Comment
Please, Sign In to add comment