Page 1 of 1

HTML Box Scrollbar

Posted: Wed Nov 11, 2020 1:42 pm
by vanman
Hi

I have a HTML object that has text returned to from the database.

Is it possible to have a scrollbar on the on the HTML object? I understand the HTML object can be dynamic and grow as need but I want to only have the HTML object be a certain height.

Any thoughts would be greatly appreciated

Re: HTML Box Scrollbar

Posted: Wed Nov 11, 2020 2:03 pm
by kev1n
Hi,

You could add some JavaScript to show scrollbars:

Code: Select all

$('#your_html_object_ID').css("overflow", "scroll");

Or to show a horizontal scrollbar:

Code: Select all

$('#your_html_object_ID').css("overflow-y", "scroll");
Or to show a vertical scrollbar:

Code: Select all

$('#your_html_object_ID').css("overflow-x", "scroll");

Re: HTML Box Scrollbar

Posted: Wed Nov 11, 2020 2:08 pm
by vanman
Hi Kevin

Thanks Heaps Mate.

Paul