Advertisement
Guest User

Untitled

a guest
May 20th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(){
  3. $('#country').typeahead({
  4. source: function(query, result){
  5. $.ajax({
  6. url:"fetch_sms_alert_source.php",
  7. method:"POST",
  8. data:{query:query},
  9. dataType:"json",
  10. success:function(data){
  11. result($.map(data, function(item){
  12. return item;
  13. }));
  14. }
  15. });
  16. }
  17. });
  18.  
  19. });
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement