Whenever I attempt to click on the video link, it seems to shift over to the left side of the page. The link is positioned in the center and I would prefer for the video to open up at the same central location. However, it consistently opens up on the left side of the page. This problem arises due to the utilization of the Sublime HTML5 video player.
Here's the html code snippet:
<div id="demo">
<table>
<tr>
<td><a href='#' id='start_video1' class='custom_start_view'><h3>Watch Demo</h3> </td>
<td><img src="assets/images/logo.png" width="50" height="50"/> </td>
</tr>
</a>
<video id='video1' data-autoplay='true' poster='assets/images/logo.png' width='432' height='243' preload='none' style='display:none;'>
<source src='assets/DreamItReelExplainerVideo.mp4' />
<source src='assets/DreamItReelExplainerVideo.webm' data-quality='hd' />
</video>
</table>
</div>
Additionally, here is the JavaScript code: