Encountering an issue where the user is taken to the top of a scrollable div (absolute position) when clicking a label/checkbox.
Tried different approaches on an onclick event for each of the 4 labels below, but unfortunately none of them are effective.
div.scrollIntoView();
div.scrollTop = div.scrollHeight - div.clientHeight;
javascript:void(0);
preventDefault();
return false;
Would greatly appreciate any assistance!