Created
September 3, 2009 18:23
-
-
Save tammersaleh/180440 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // <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