<div class="text-column-ru">
<div class="text-column-ru__inner" id="text-column">
Контент
</div>
</div>
.text-column-ru {
font-family: "Cambria", sans-serif;
height: 600px;
font-size: 18px;
overflow: hidden;
margin-left: 80px;
&__inner {
width: 100%;
height: 100%;
overflow-y: scroll;
padding-right: 17px;
box-sizing: content-box;
}
console.log($("#text-column").scrollHeight);
$('#text-column').prop('scrollHeight')
// или
$('#text-column').get(0).scrollHeight
// или
$('#text-column')[0].scrollHeight