Jeremy Cordeaux hosts Professor Tonia Gray from the University of Western Sydney. She shares valuable insights into why allowing children to take risks is crucial
Jeremy Cordeaux hosts the legendary broadcaster Leon Byner for a deep dive into a myriad of topics that span health, broadcasting, and the fascinating world
Jeremy Cordeaux sits down with the iconic Glen-Marie North. Known for her vibrant personality and influential presence, Glen-Marie shares her journey from a young PR
Dr John Bruni reunites with Harvard’s esteemed Professor Avi Loeb! It’s been almost 11 months since their last conversation, and the world of UAPs (Unidentified
jQuery(document).ready(function($) {
var playerContainer = $('#auscast-player-container');
var player = $('#auscast-player');
// Show player and store session
$('#play-auscast').click(function() {
playerContainer.slideDown();
sessionStorage.setItem('auscastPlaying', 'true');
sessionStorage.setItem('auscastSrc', player.attr('src'));
});
// Keep the player open and playing across page reloads
if (sessionStorage.getItem('auscastPlaying') === 'true') {
playerContainer.show();
player.attr('src', sessionStorage.getItem('auscastSrc'));
}
// Close player
$('#close-auscast-player').click(function() {
playerContainer.slideUp();
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
player.attr('src', ''); // Stop playback
});
// Stop stream when another audio plays
$('audio, video').on('play', function() {
player.attr('src', '');
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
});
});