You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.
Trying to set the innerHTML of the scroller div with an AJAX call.. No luck - no scroll..
If I switch developer mode in Chrome to a mobile emulation scrolling starts to work.
If I then switch back to desktop scrolling continues to function.
using a modified version of the "scrollbars" demo
added the following JavaScript:
<script> function fillScroller() { var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { document.getElementById("scroller").innerHTML = this.responseText; } }; xmlhttp.open("GET","big-text-file.txt", true); xmlhttp.send(); } fillScroller(); </script>The text was updated successfully, but these errors were encountered: