36487-vm/assets/js/main.js
2025-11-30 05:45:13 +00:00

16 lines
585 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
const analyzeBtn = document.getElementById('analyze-btn');
const uploadSection = document.getElementById('upload-section');
const analysisSection = document.getElementById('analysis-section');
if (analyzeBtn) {
analyzeBtn.addEventListener('click', function(event) {
event.preventDefault();
// Hide upload section and show analysis section
uploadSection.style.display = 'none';
analysisSection.style.display = 'block';
});
}
});