Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. "use strict";
  2.  
  3. (function (window, document, $) {
  4.  
  5. $(function(){
  6. $("#haupt-inhalt")
  7. .find("a")
  8. .on("click", function (e) {
  9. console.log("Hallo");
  10. e.preventDefault();
  11. $.getJSON("./lib/data/artikel.json", function(data){
  12. console.log(Object.entries(data));
  13. var items = [];
  14.  
  15.  
  16. });
  17. });
  18.  
  19.  
  20. });
  21.  
  22.  
  23.  
  24. }(window, document, jQuery));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement