Created
January 30, 2018 12:49
-
-
Save chbrandt/252ab0d446264e871fa82223cf2978e7 to your computer and use it in GitHub Desktop.
Jupyter notebook toggle code-cells on/off
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from IPython.display import HTML | |
HTML('''<script> | |
code_show=true; | |
function code_toggle() { | |
if (code_show){ | |
$('div.input').hide(); | |
} else { | |
$('div.input').show(); | |
} | |
code_show = !code_show | |
} | |
$( document ).ready(code_toggle); | |
</script> | |
<form action="javascript:code_toggle()"><input type="submit" value="Toggle code on/off"></form>''') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment