Reputation: 88
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
Upvotes: 0
Views: 350
Reputation: 590
use a custom javascript and toggle it
$('#header').toggle()
$('#menubar').toggle();
you can find some reference here
Upvotes: 1