Hello There,
Thanks for writing in! The issue occurred because you have inserted this on the page:
<script data-cfasync="false">
var swarmoptions = {
swarmcdnkey: "eae08cf7-4ff0-4d23-8b73-b610adf3d67a",
autoreplace: {
youtube: true
}
};
</script>
<script data-cfasync="false" src="https://assets.swarmcdn.com/cross/swarmdetect.js"></script></script><script id="x-custom-js">jQuery(window).load(function(){
jQuery('.mejs-playpause-button button, .mejs-overlay-play').click(function() {
jQuery('video.x-mejs').removeAttr('poster');
});
});</script>
I went ahead and updated it into this:
</script>
<script data-cfasync="false">
var swarmoptions = {
swarmcdnkey: "eae08cf7-4ff0-4d23-8b73-b610adf3d67a",
autoreplace: {
youtube: true
}
};
</script>
<script data-cfasync="false" src="https://assets.swarmcdn.com/cross/swarmdetect.js"></script></script><script id="x-custom-js">jQuery(window).load(function(){
jQuery('.mejs-playpause-button button, .mejs-overlay-play').click(function() {
jQuery('video.x-mejs').removeAttr('poster');
});
});
The custom JS when displayed in the front end will be wrapped with <script> tag already. What I changed in your code is necessary to avoid any JS error and avoid the conflict by reusing built in tag wrapper.
Please check your site now.
That great! Thanks heaps. Its working again 
That code is leftover from a program I no longer use. Can I just go in a delete the whole section of code?
I cant find where that code is can you tell me what to go to?
Hi @VelocityWeb,
It’s on your home page’s custom javascript. Please edit your home page in the builder and click the JS icon on the left toolbar.
Thanks!
Thanks, got it 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.