10 lines
No EOL
177 B
JavaScript
10 lines
No EOL
177 B
JavaScript
export function getScrollHeight(id) {
|
|
|
|
const el = document.getElementById(id)
|
|
if (el == null) {
|
|
return null
|
|
} else {
|
|
return el.scrollHeight;
|
|
|
|
}
|
|
} |