Advertisement
CyberPascal

Untitled

Apr 26th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.10 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.js" ></script>
  6. <script type="text/javascript">
  7. <!--
  8. $(document).ready(function(){
  9.    $(".up").click(function(){
  10.        var pdiv = $(this).parent('div');
  11.        pdiv.insertBefore(pdiv.prev());
  12.        return false
  13.    });
  14.    $(".down").click(function(){
  15.        var pdiv = $(this).parent('div');
  16.        pdiv.insertAfter(pdiv.next());
  17.        return false
  18.    });
  19. });
  20. //-->
  21. </script>
  22. </head>
  23. <body>
  24.   <table>
  25.     <tr>
  26.       <td id="leftcol" width="25%" height="400" align="center">
  27.         <div>Block 1 <a class="up" href="#">Up</a><a class="down" href="#">Down</a></div>
  28.         <div>Block 2 <a class="up" href="#">Up</a><a class="down" href="#">Down</a></div>
  29.         <div>Block 3 <a class="up" href="#">Up</a><a class="down" href="#">Down</a></div>
  30.       </td>
  31.     </tr>
  32.   </table>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement