Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. "use strict";
  2. (function(window,document,$){
  3. $(function(){
  4. var $links = $('#haupt-inhalt').find("a");
  5. var $ausgabe = $('#artikel');
  6.  
  7. $links.on("click", function(e){
  8. e.preventDefault();
  9. $.getJSON("lib/data/artikel.json", function(data){
  10.  
  11. //--------------------------
  12. // grobe Idee festlegen
  13. //--------------------------
  14. // h2 -> data.headline
  15. // p -> data.fliesstext
  16. // '<img src="' + data.src + '" alt="' + data.alt + '" title="' + data.alt + '" height="400" width="400">'
  17. //--------------------------
  18.  
  19. var html = "",
  20. article;
  21. for(var key in data) {
  22. article = data[key];
  23. for(var prop in article) {
  24. html += prop + " " + article[prop] + "<br>";
  25. }
  26. }
  27.  
  28. $("#artikel")
  29. .append(html);
  30. });
  31. });
  32.  
  33. });
  34. } (window,document,jQuery) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement