11 lines
397 B
JavaScript
11 lines
397 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
const ctaButton = document.querySelector('#cta-button');
|
|
const createSection = document.querySelector('#create');
|
|
|
|
if (ctaButton && createSection) {
|
|
ctaButton.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
createSection.scrollIntoView({ behavior: 'smooth' });
|
|
});
|
|
}
|
|
}); |