// scripts.js | |
document.addEventListener('DOMContentLoaded', function () { | |
const uploadButton = document.getElementById('upload-button'); | |
uploadButton.addEventListener('click', function () { | |
const fileInput = document.getElementById('file-upload'); | |
if (fileInput.files.length > 0) { | |
alert('فایل با موفقیت بارگذاری شد!'); | |
} else { | |
alert('لطفاً یک فایل انتخاب کنید.'); | |
} | |
}); | |
}); | |