video1
by b_g_v
HTML
<video controls="" width="300" widght="300" onclick="vvv(this);">
<source src2="https://video.twimg.com/ext_tw_video/1841063070485135360/pu/vid/avc1/480x270/w-sKGQOGE1k4D4vp.mp4?tag=12" type="video/mp4">
</video>
<BR>
<video controls="" src2="https://video.twimg.com/ext_tw_video/1841063070485135360/pu/vid/avc1/480x270/w-sKGQOGE1k4D4vp.mp4?tag=12" width="300" widght="300" onclick="vvv2(this);">
</video>
JavaScript
function vvv(thi){
//alert('src2:' + thi.childNodes[0].getAttribute('src2'));
thi.childNodes[0].setAttribute('src', thi.childNodes[0].getAttribute('src2'));
//console.log(thi.childNodes);
thi.load();
}
function vvv2(thi){
//alert('src2:' + thi.childNodes[0].getAttribute('src2'));
thi.setAttribute('src', thi.getAttribute('src2'));
//console.log(thi.childNodes);
thi.load();
}