Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
  5. <style>
  6. .otherCon {visibility: hidden;}
  7. label {display: block;}
  8. </style>
  9. </head>
  10. <body>
  11. <div>
  12. <div class="userCheck">
  13. <input type="checkbox" id="other" name="Other" value="Other" />
  14. <label>Other</label>
  15. </div>
  16. <div class="otherCon">
  17. <label>If other</label>
  18. <textarea id="text" name="Other Response"></textarea>
  19. </div>
  20. <div>
  21. <label>More info</label>
  22. <textarea id="text" name="More info"></textarea>
  23. </div>
  24. <script>
  25. $('#other').on('click', function() {
  26. if ($(this).is(':checked')) {
  27. $('.otherCon').css('visibility', 'visible');
  28. } else {
  29. $('.otherCon').css('visibility', 'hidden');
  30. }
  31. });
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement