Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <style>
  2. .info {
  3. display: none;
  4. }
  5. </style>
  6.  
  7. <script>
  8. $(document).ready(function(){
  9. $(function() {
  10. $("tr").click(function() {
  11. if ($(this).find("> .info").css('display') == 'none') {
  12. $(this).find("> .info").show();
  13. } else {
  14. $(this).find("> .info").hide();
  15. }
  16. });
  17. });
  18. });
  19. </script>
  20.  
  21. <table>
  22. <tr>
  23. <td>Joe Bloggs</td>
  24. <td>joebloggs@email.com</td>
  25. <div class="info">555.555.555</div>
  26. </tr>
  27. <td>Sam Doe</td>
  28. <td>samdoe@email.com</td>
  29. <div class="info">556.556.556</div>
  30. </tr>
  31. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement