How change the video tag poster attribute with javascript?
To do it natively, just change the attribute:
document.getElementById('htmlFive').setAttribute('poster','newvalue');
Use jQuery's attr method, e.g:
$('#htmlFive').attr('poster', 'newvalue')
Or native setAttribute:
document.querySelector('#htmlFive').setAttribute('poster', 'newvalue')