abajan

scriptThatCopiesFromOneFieldToAnother

Oct 18th, 2011
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. 1. function copy_name()
  2. 2. {
  3. 3. if(document.form_12885302469.input_11_0.checked){
  4. 4. document.form_12885302469.first_6.value=document.form_12885302469.first_3.value;
  5. 5. document.form_12885302469.last_6.value=document.form_12885302469.last_3.value;
  6. 6. }else{
  7. 7. document.form_12885302469.first_6.value="";
  8. 8. document.form_12885302469.last_6.value="";
  9. 9. }
  10. 10. }
  11. 11.
  12. 12. function copy_email()
  13. 13. {
  14. 14. if(document.form_12885302469.input_13_0.checked){
  15. 15. document.form_12885302469.input_7.value=document.form_12885302469.input_4.value;
  16. 16. }else{
  17. 17. document.form_12885302469.input_7.value="";
  18. 18. }
  19. 19. }
  20. 20.
  21. 21. function copy_address()
  22. 22. {
  23. 23. if(document.form_12885302469.input_12_0.checked){
  24. 24. document.form_12885302469.input_8_addr_line1.value=document.form_12885302469.input_5_addr_line1.value;
  25. 25. document.form_12885302469.input_8_addr_line2.value=document.form_12885302469.input_5_addr_line2.value;
  26. 26. document.form_12885302469.input_8_city.value=document.form_12885302469.input_5_city.value;
  27. 27. document.form_12885302469.input_8_state.value=document.form_12885302469.input_5_state.value;
  28. 28. document.form_12885302469.input_8_postal.value=document.form_12885302469.input_5_postal.value;
  29. 29. document.form_12885302469.input_8_country.value=document.form_12885302469.input_5_country.value;
  30. 30. }else{
  31. 31. document.form_12885302469.input_8_addr_line1.value="";
  32. 32. document.form_12885302469.input_8_addr_line2.value="";
  33. 33. document.form_12885302469.input_8_city.value="";
  34. 34. document.form_12885302469.input_8_state.value="";
  35. 35. document.form_12885302469.input_8_postal.value="";
  36. 36. document.form_12885302469.input_8_country.value="";
  37. 37. }
  38. 38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment