DZAPPZ.COM: the best blogger template for posting apps as well as articles in one blog.. Test link Get now!

Contact

إرسال تعليق

Enter Image URL / Code Snippets / Quotes / name tag, then click parse button accordingly that you have entered. then copy the parse result and paste it into the comment field.


Cookie Consent

We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.

Google Translate
Bookmark Post
function updateTable() { const tableBody = document.getElementById('fileTable').querySelector('tbody'); tableBody.innerHTML = ''; files.forEach(file => { for (const key in file) { if (file.hasOwnProperty(key)) { const row = document.createElement('tr'); const attributeCell = document.createElement('td'); attributeCell.innerHTML = `${key.replace(/([A-Z])/g, ' $1').replace(/^./, str => str.toUpperCase())}:`; row.appendChild(attributeCell); const valueCell = document.createElement('td'); if (key === 'fileUrl') { const downloadButton = document.createElement('a'); downloadButton.href = file[key]; downloadButton.className = 'download-button'; downloadButton.innerHTML = ` ${file.fileName}`; valueCell.appendChild(downloadButton); } else if (key === 'fileDescription') { // Add an icon for descriptions const icon = document.createElement('i'); icon.className = 'fas fa-file-alt'; valueCell.appendChild(icon); valueCell.appendChild(document.createTextNode(` ${file[key]}`)); } else { valueCell.textContent = file[key]; } row.appendChild(valueCell); tableBody.appendChild(row); } } }); }