Skip to content

Instantly share code, notes, and snippets.

@farithadnan
Created October 12, 2021 03:29
Show Gist options
  • Save farithadnan/9f880a89f5e7c5fc7eb4702481986181 to your computer and use it in GitHub Desktop.
Save farithadnan/9f880a89f5e7c5fc7eb4702481986181 to your computer and use it in GitHub Desktop.
Preventing scrolling when Input's focus is triggerred
// To prevent page scrolling whenever the input's focus is triggered
this.productNameInput.nativeElement.focus({
preventScroll: true
});
// Souces: https://newbedev.com/focus-to-input-without-scrolling
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment