Guest User

Untitled

a guest
Jun 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <script id="EmployeeValue">
  2. for (int x = 0; x <= 100; x++)
  3. {
  4. int value = x;
  5. }
  6. </script>
  7. <h5>Number and Type of users affected</h5><input
  8. class="NumUsers"type="number" id="EmployeeValue" /><input
  9. class="TypeUsers"type="text" />
  10.  
  11. <h5>Number and Type of users affected</h5>
  12. <input id="EmployeeValue" class="NumUsers" type="number" />
  13. <input class="TypeUsers"type="text" />
  14.  
  15. <script>
  16. for (var x = 0; x <= 100; x++) {
  17. document.getElementById("EmployeeValue").value = x;
  18. document.getElementsByClassName("TypeUsers")[0].value = x;
  19. }
  20. </script>
Add Comment
Please, Sign In to add comment