Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <html>
  2. <body onload="funkcja()">
  3. <p>Podaj swoje imię: <input type="text" id="imie" onchange="funkcja2()"></p>
  4. <p>Podaj swoje nazwisko: <input type="text" id="nazwisko" onchange="funkcja3()"></p>
  5. <p>Podaj swoj wiek: <input type="text" id="wiek"></p>
  6. <script>
  7. var x = document.getElementById("imie");
  8. var y = document.getElementById("nazwisko");
  9. var z = document.getElementById("wiek");
  10. function funkcja() {
  11. y.disabled = true;
  12. z.disabled = true;
  13. }
  14. function funkcja2() {
  15. y.disabled = false;
  16. }
  17. function funkcja3() {
  18. z.disabled = false;
  19. }
  20. </script>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement