4 lines
160 B
JavaScript
4 lines
160 B
JavaScript
![]() |
function scrollToTarget() {
|
|||
|
const target = document.getElementById("target");
|
|||
|
target.scrollIntoView({ behavior: "smooth" }); // اسکرول نرم
|
|||
|
}
|