i\'m trying to build a video player, that works everywhere. so far i\'d be going with:
I solved this with this simple method
function changeSource(url) { var video = document.getElementById('video'); video.src = url; video.play(); }