Guest User

Untitled

a guest
Oct 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // ** Demo code **
  2. var p = document.querySelector('p'),
  3. input = document.querySelector('input');
  4.  
  5. function setText(v){
  6. p.innerHTML = formatBytes(v);
  7. }
  8. // bind 'input' event
  9. input.addEventListener('input', function(){
  10. setText( this.value )
  11. })
  12. // set initial text
  13. setText(input.value);
  14.  
  15. <input type="text" value="1000">
  16. <p></p>
Add Comment
Please, Sign In to add comment