Skip to main content

Bug Tracker

Side navigation

Ticket #3177: test-3177-2.html


File test-3177-2.html, 0.7 KB (added by dmethvin, August 12, 2010 12:34AM UTC)
<!DOCTYPE html> 
<html> 
<head> 
<title></title> 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js" type="text/javascript"></script>  
  <script>
  $(document).ready(function(){

  $("#slideup").click(
   function(){ $("#mine").slideUp("slow"); }
  );
  $("#slidedown").click(
   function(){ $("#mine").slideDown("slow"); }
  );


  });
  </script>
  <style>

  </style>
</head>
<style>

</style>
<body>

<button id="slideup">slide up</button>
<button id="slidedown">slide down</button>
<br />
<table>
<tr><td>If a</td><td>problem</td></tr>
<tr><td id="mine" colspan="2">comes along</td></tr>
<tr><td>you must</td><td>whip it!</td></tr>

</body>
</html>

Download in other formats:

Original Format