Skip to content

Instantly share code, notes, and snippets.

@tammersaleh
Created September 3, 2009 18:23
Show Gist options
  • Select an option

  • Save tammersaleh/180440 to your computer and use it in GitHub Desktop.

Select an option

Save tammersaleh/180440 to your computer and use it in GitHub Desktop.
// <div id="note1">
// <div class=".contents"/>
// </div>
// <div id="note2">
// <div class=".contents"/>
// </div>
function toggle_note_visibility(note) {
contents = note.find(".contents");
if (contents.is(":visible")) {
contents.hide();
} else {
contents.show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment