Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(){
  3. $("#search-box").keyup(function(){
  4. $.ajax({
  5. type: "POST",
  6. url: "autocomplete.php",
  7. data:'keyword='+$(this).val(),
  8. beforeSend: function(){
  9. $("#search-box").css("background","#FFF url(LoaderIcon.gif) no-repeat 165px");
  10. },
  11. success: function(data){
  12. $("#suggesstion-box ").show();
  13. $("#suggesstion-box").html(data);
  14. $("#search-box").css("background","#FFF");
  15. }
  16. });
  17. });
  18. });
  19.  
  20. function selectCountry(val) {
  21. $("#search-id").val(val);
  22. $("#suggesstion-box").hide();
  23. }
  24.  
  25. function updateSearchBox(el) {
  26. $("#search-box").val($(el).html());
  27. }
  28.  
  29. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement