joris

Convert

Oct 1st, 2012
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.62 KB | None | 0 0
  1. for ( var i = 0; i < response.length; ++i ) {
  2.                     str = response[i].judul;
  3.                     str2 = response[i].waktu_mulai;
  4.  
  5.                     listItem = document.createElement('div');
  6.                     listItem.setAttribute('data-bb-type', 'item');
  7.                     listItem.setAttribute('data-bb-img', 'images/icons/logo/afc.png');
  8.                     listItem.setAttribute('data-bb-title', str);
  9.                     listItem.innerHTML = str2+" WIB";
  10.                     container = document.createElement('div');
  11.                     container.appendChild(listItem);
  12.                     bb.imageList.apply([container]);
  13.                     dataList.appendChild(container.firstChild);  
  14.                     if (bb.scroller) {
  15.                         bb.scroller.refresh();
  16.                     }
  17.                 }
Advertisement
Add Comment
Please, Sign In to add comment