Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. Puec
  6.  
  7. <input id="Dwa" type="radio" name="dwa" onclick="kobjeta()"/>Męszczyzna
  8.  
  9. <input id="Trzy" type="radio" name="dwa" onclick="kobjeta()"/> Kopieta
  10.  
  11.  
  12. <div id="Cztery" style='display: none'>Nazwisko Panieńskie
  13. <input type='text' id='yes' name='yes'/>
  14. </div>
  15.  
  16. <script>
  17.  
  18. function kobjeta() {
  19. if (document.getElementById('Dwa').checked) {
  20. document.getElementById('Cztery').style.display = 'none';
  21. }
  22. else {
  23. document.getElementById('Cztery').style.display = 'block';
  24. }
  25. }
  26.  
  27. </script>
  28.  
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement