Musician. Podcaster. Storyteller. Sharing my journey through sound.
Recent Audio Posts
Morning Walk Soundscape
New Podcast Episode: Creative Journeys
Guitar Jam Session
// Get the profile audio element and play button
const profileAudio = document.getElementById(‘profileAudio’);
const playButton = document.getElementById(‘playButton’);
// Play or pause audio when button is clicked
playButton.addEventListener(‘click’, function() {
if (profileAudio.paused) {
profileAudio.play();
playButton.textContent = ‘⏸️’; // Change button to pause symbol
} else {
profileAudio.pause();
playButton.textContent = ‘▶️’; // Change button to play symbol
}
});
John Doe
New Podcast Episode: Creative Journeys New Podcast Episode: Creative Journeys New Podcast Episode: Creative Journeys