9 lines
241 B
JavaScript
9 lines
241 B
JavaScript
// deno-lint-ignore no-unused-vars
|
|
function scrollToHighlights() {
|
|
const element = document.getElementById("highlights");
|
|
element.scrollIntoView({
|
|
behavior: 'smooth',
|
|
block: 'start'
|
|
});
|
|
console.log("scroll")
|
|
} |