Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.     window.onload = function(){
  3.          
  4.          
  5.          
  6.             var tableBody = document.getElementById("eventName").childNodes[3].childNodes[3];
  7.            
  8.             tableBody.innerHTML = eventData.reduce(function(a,b){
  9.                 return a+ "<tr><td>" + b.name + "</td><td>" + b.dates + "</td></tr>";}, "");
  10.            
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement