Created
March 31, 2011 12:50
-
-
Save tjboudreaux/896297 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
| <script type="text/javascript"> | |
| //you can wrap this in a click function or some other event. | |
| $("#content_to_hide").hide(); | |
| </script> | |
| <!-- content you don't want to hide in css of the wrapper, | |
| set height,width,& bg on this element --> | |
| <div id="content_wrapper"> | |
| <!-- content you want to hide --> | |
| <div id="content_to_hide"> </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment