Skip to content

Instantly share code, notes, and snippets.

@kdheepak
Created September 15, 2017 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdheepak/bfa8d93dc8577bd5674f5484f688ce21 to your computer and use it in GitHub Desktop.
Save kdheepak/bfa8d93dc8577bd5674f5484f688ce21 to your computer and use it in GitHub Desktop.
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="Click here to toggle on/off the raw code."></form>''')
@kdheepak
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment