Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. {
  2. "news": [
  3. {
  4. "URL": "",
  5. "newsid": "2104",
  6. "thefile": "HB2.jpg",
  7. "title": "mytitle",
  8. "important": "0",
  9. "details": "nothinghere",
  10. "category": "pop",
  11. "lastname": "Johnson",
  12. "firstname": "John",
  13. "thedate": "2014-10-16"
  14. }
  15. ]
  16. }
  17.  
  18. $.each(data.news, function(i,newsitem){
  19. text+='<tr class="danger" data-info="'+data.news[i]+'">';
  20. text+='<td class="col-sm-1">'+newsitem.firstname+newsitem.lastname+'</td>';
  21. text+='<td class="col-sm-3">'+newsitem.title+'</td>';
  22. text+='<td class="col-sm-1">'+newsitem.category+'</td>';
  23. text+='<td class="col-sm-4">'+newsitem.details+'</td>';
  24. text+='<td class="col-sm-2">'+newsitem.thedate+'</td>';
  25. text+='</tr>';
  26. });
  27.  
  28. $("#latestspace").on('click','tr',( function(event){
  29. alert($(this).attr('data-info').URL);
  30. }))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement