Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. //index.php
  2. <!DOCTYPE html>
  3. <html>
  4. <meta charset="utf-8">
  5. <head>
  6. <title>Live Søk</title>
  7. </head>
  8. <body>
  9. <div id="sokher">
  10. <label for="search">Live Søk</label>
  11. <p>Skriv inn navn</p>
  12. <input type='text' id='sok' />
  13. </div>
  14. <ul id="results"></ul>
  15. <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  16. <script src="autofill.js"></script>
  17. </body>
  18. </html>
  19.  
  20.  
  21. //autofill.js
  22. $("sok").change(function() {
  23. // endre resultatan
  24. }]);
  25.  
  26. $.ajax({ url: "navn.json", success: function(liste) {
  27. $.each(liste, function(k,v) {
  28. $("#results").append("<li>"+v['navn']+"</li>");
  29. });
  30. }, dataType: 'json'
  31. });
  32.  
  33.  
  34. //navn.json
  35. [
  36. {
  37. "navn":"Kari Norrmann"
  38. },
  39. {
  40. "navn":"Ola Norrmann"
  41. },
  42. {
  43. "navn":"Per Norrmann"
  44. }
  45. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement