Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created June 18, 2018 15:13
Show Gist options
  • Select an option

  • Save NickDeckerDevs/23ffef45b3cb6b3f7ef51cf78b1a9435 to your computer and use it in GitHub Desktop.

Select an option

Save NickDeckerDevs/23ffef45b3cb6b3f7ef51cf78b1a9435 to your computer and use it in GitHub Desktop.
tierpoint webinar page
<?php
if( isset( $_GET ) && isset( $_GET[ 'id' ] ) ) {
$webinar_id = $_GET[ 'id' ];
}
?>
<div class="jsBrightTALKEmbedWrapper" style="width:100%; height:100%; position:relative;background: #ffffff;">
<script class="jsBrightTALKEmbedConfig" type="application/json">
{
"channelId" : 14695,
"language": "en-US",
"commId" : <?php echo $webinar_id; ?>,
"displayMode" : "standalone",
"height" : "auto"
}
</script>
<script src="https://www.brighttalk.com/clients/js/player-embed/player-embed.js" class="jsBrightTALKEmbed"></script>
</div>
<script>
jQuery(window).load(function() {
setTimeout(function() {
jQuery('.jsBrightTALKEmbedWrapper > div').remove();
}, 1200);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment