Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Was looking to add a note at the top of my webpage similar to this closing letter found here: http://cypher13.com/ I was curious if anyone knew about any javascript/jquery plugin that could achieve this effect? Something simple if possible. My javascript skills are a bit on the beginner side :) Thanks in advance!

share|improve this question
1  
Name of the method is slideToggle, there are some examples here api.jquery.com/slideToggle – undefined Jan 3 at 3:42

closed as not constructive by josh3736, charlietfl, undefined, Colin, arttronics Jan 3 at 3:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

Yes, you are right, it is slideToggle. Example:

HTML:

<html>
<head> ... </head>
  <body>
      <div id="flip">Click to slide the panel down or up</div>
      <div id="panel">Hello world!</div>   
   </body>
</html>

jQuery:

 $(document).ready(function(){
      $("#flip").click(function(){
        $("#panel").slideToggle("slow");
      });
 });

CSS:

#panel,#flip {
   padding:5px;
   text-align:center;
   background-color:#e5eecc;
   border:solid 1px #c3c3c3;
}
#panel {
   padding:50px;
   display:none;
}

Reference: http://api.jquery.com/slideToggle/

share|improve this answer

You don't need a plugin for that:

HTML:

<div><a id="close" href="javascript:void(0);">close</a></div>
<div id="content">content</div>

JavaScript

$(function() {

   $('#close').click(function() { $('#content').slideUp(1000); });

});

Working example: http://jsfiddle.net/KusAk/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.