Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <style>
  2. #hidden_div {
  3. display: none;
  4. }
  5.  
  6. </style>
  7. <script type="text/javascript">
  8. function showDiv(divId, element)
  9. {
  10. document.getElementById(divId).style.display = element.value ==1 ? 'block' : 'none';
  11.  
  12. }
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement