Advertisement
Kinu-chan

Untitled

Mar 24th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(){
  3. $("button").click(function(){
  4. $("#div1par").animate({height:"420px"}); //Must be set, auto doesn't cut it.
  5. $("#div1").fadeToggle();
  6. $("#butt").fadeToggle();
  7. $("#buttpar").animate({height:"0px"});
  8. });
  9. });
  10. </script>
  11.  
  12. <div id="buttpar" height="20px">
  13. <div id="butt" style="block">
  14. <button>fade</button>
  15. </div>
  16. </div>
  17. <div id="div1par" style="height="0">
  18. <div id="div1" style="display:none;">
  19. fug ;DD<br><img src="http://kinuch.in/vectors/rotator.php">
  20. </div>
  21. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement