Guest User

Untitled

a guest
Jul 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!-- This is a Better practice in JavaScript! -->
  2. var Saya = (function() {
  3.     "use strict";
  4.     var hai = document.getElementById("hai"),
  5.     juki = document.getElementById("juki");
  6.  
  7.     return hai.value = juki.value;
  8. });
  9.  
  10. <!-- Html code -->
  11. <select name="juki" id="juki" onchange="Saya();">
  12. <option value="">please select</option>
  13. <option value="a">a</option>
  14. <option value="b">b</option>
  15. <option value="c">c</option>
  16. </select>
  17. <input name="hai" id="hai" type="text">
  18. <!-- //End -->
Add Comment
Please, Sign In to add comment