Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <html>
  2. <select>
  3. <option value="1">One</option>
  4. <option value="2">Two</option>
  5. </select>
  6. <input type="text" name="bal" id="textbal" />
  7. <script type="text/javascript">
  8. $('select').on('change', function() {
  9. $('#textbal').val( this.value );
  10. var a = this.value;
  11. alert(a);
  12.  
  13. $('#textball').attr('value',a);
  14.  
  15. });
  16. $('textball').trigger('change', function() {
  17. // alert( this.val() );
  18. // alert( $(this).val() );
  19. alert('hi');
  20. });
  21. </script>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement