`;// Show the result in the iframe
iframe.srcdoc = output;// Wait for iframe content to fully load before hiding the spinner
iframe.onload = function() {
hideLoading();
};
}, 300); // Simulate a delay (adjust the delay as needed)
}// Add input event listeners to the textareas for real-time updates
htmlTextarea.addEventListener('input', compile);
cssTextarea.addEventListener('input', compile);
jsTextarea.addEventListener('input', compile);// Initialize loading state
compile();