Guest User

Untitled

a guest
May 28th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. function inputState(id) {
  2. window.formElementsPath = document.getElementById['contact-form'].elements;
  3. if (id == 1 && formElementsPath['name'].value == nameHint) {
  4. formElementsPath['name'].style.color = '#000';
  5. formElementsPath['name'].value = e;
  6. }
  7. else if (id == 2 && formElementsPath['name'].value == e) {
  8. formElementsPath['name'].style.color = hintColor;
  9. formElementsPath['name'].value = nameHint;
  10. }
  11. else if (id == 3 && formElementsPath['email'].value == emailHint) {
  12. formElementsPath['email'].style.color = '#000';
  13. formElementsPath['email'].value = e;
  14. }
  15. else if (id == 4 && formElementsPath['email'].value == e) {
  16. formElementsPath['email'].style.color = hintColor;
  17. formElementsPath['email'].value = emailHint;
  18. }
  19. else if (!id) {
  20. formElementsPath['email'].value = emailHint;
  21. formElementsPath['name'].value = nameHint;
  22. }
  23. }
Add Comment
Please, Sign In to add comment