Advertisement
aaronsnig501

Untitled

Mar 14th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.35 KB | None | 0 0
  1. <script>
  2. $(function() {
  3.     if (!$('#id_is_a_poll').is('checked')) {
  4.         $('#poll_form').hide()
  5.     }
  6.  
  7.     $('#id_is_a_poll').click(function(el) {
  8.         var poll_form = $('#poll_form')
  9.  
  10.         if (poll_form.is(":visible")) {
  11.             poll_form.hide()
  12.         } else {
  13.             poll_form.show()
  14.         }
  15.     })
  16. })
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement