Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. document.getElementById('volume').addEventListener('change', function () {
  2. console.log(this.value);
  3. video = document.getElementById('active');
  4. video.value = this.value;
  5. //$('#active').prop("volume", this.value); //even this doesn't work.
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement