Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. "use strict";
  2. (function(window,document,$){
  3. $(function(){
  4. var $ausgabe = $('#hier');
  5. var jqxhr = $.get("lib/data/newsthemen.json", function (data) {
  6. // console.log(data);
  7. var i = rand(0,data.length-1);
  8. $ausgabe.find('h1').html( data[i].h1 );
  9. $ausgabe.find('p').eq(0).html( data[i].p0 );
  10. $ausgabe.find('p').eq(1).html( data[i].p1 + "<br>" + "<a href='#' title='" + data[i].atitle + "'>mehr</a>" );
  11. }, "json");
  12.  
  13. });
  14. } (window,document,jQuery) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement