Devesh jha
Devesh jha

Reputation: 88

Jupyter Notebook Iframe hide menu bar

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

Upvotes: 0

Views: 350

Answers (1)

Vineesh Vijayan
Vineesh Vijayan

Reputation: 590

use a custom javascript and toggle it

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

you can find some reference here

Upvotes: 1

Related Questions