프로그래밍/Script
[jQuery] scrollHeight 가져오기
홍반장水_
2023. 7. 7. 08:59
반응형
scrollHeight 가져오기
<textarea id="ele">
a
bc
def
ghij
klmno
</textarea>
<br>
<button onclick="getScHeight();">getScrollHeight</button>
getScHeight = function() {
var scHeight = $('#ele').prop('scrollHeight');
console.log(scHeight);
};
반응형