I have an issue that I need help with. I have a video on my webpage that is done using HTML5 tag. For some reason it is not wanting to load the video. The spelling of the URL and file is correct. It was working but when I added more videos to the site (meaning I uploaded them to the server) and put up another page with the same video it is no longer wanting to load. I have tried to use the preload attribute but that doesn't seem to help. I also took the other page down and the videos worked again. Any suggestions?
Video HTML:
<table class="contentpaneopen">
<tbody>
<tr>
<td class="contentheading" width="100%">Smart Strip on TV</td>
</tr>
</tbody>
</table>
<table class="contentpaneopen">
<tbody>
<tr>
<td>
<video style="border: 1px solid #000000;" preload="preload" controls="controls"开发者_Go百科 width="218px" height="138px">
<source src="Video URL" type="video/mp4"></source>
<source src="Video URL" type="video/ogg"></source>
<source src="Video URL" type="video/webm"></source> Your Browser does not support the HTML5 video tag.</video>
<p>Even Oprah knows the benefits of using a Smart Strip!</p>
</td>
</tr>
</tbody>
</table>
This only seems to happen in FF 3.6.13. the website is http://www.bitsltd.net if you would like to test it and see for your self.
Try putting the OGG source before the MP4 one.
edit The video on that site worked fine for me on FF 3.6.13.
精彩评论