jupyter notebook no scroll code example
Example: prevent jupyter from having scrollbars in a cell
%%javascript
IPython.OutputArea.prototype._should_scroll = function(lines) {
return false;
}
%%javascript
IPython.OutputArea.prototype._should_scroll = function(lines) {
return false;
}