You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have found that the poster attribute is not being successfully removed from the video tag, after the poster img tag has been created.
tag.removeAttribute("poster");
results in poster="" in Firefox and poster="null" in IE. This causes the browser to try and fetch the current page as the poster image in Firefox, and a 404 in IE.
To fix this, I have had to add:
tag["poster"] = null;
The text was updated successfully, but these errors were encountered:
I have found that the poster attribute is not being successfully removed from the video tag, after the poster img tag has been created.
tag.removeAttribute("poster");
results in poster="" in Firefox and poster="null" in IE. This causes the browser to try and fetch the current page as the poster image in Firefox, and a 404 in IE.
To fix this, I have had to add:
tag["poster"] = null;
The text was updated successfully, but these errors were encountered: