0

I have an Iframe of jupyter notebook in my application. I want to hide the menu bar and just show the cells. Is it possible to configure it ? This is how it looks currently

enter image description here

1 Answer 1

1

use a custom javascript and toggle it

$('#header').toggle()
$('#menubar').toggle();

you can find some reference here

Not the answer you're looking for? Browse other questions tagged or ask your own question.