Sounds

Slack-Key-For-Solo-Listening

Stay home, sit back, relax, and listen to a selection of our favorite slack key guitar songs. Featuring legends Ray Kane, Ledward Kaapana, Dennis Kamakahi, Keola Beamer, Gabby Pahinui, and more, we made this list especially with working-from-home in mind. A lot of instrumentals, really chill, but with some radio hits sprinkled in. Find your favorite desk, turn it up to a moderate listening level, and enjoy.


Make iFrame Height Dynamic Based on Content Inside Using JavaScript

iframe{
width: 100%;
height: 600px;
border: 2px solid #ccc;
}

// Selecting the iframe element
var iframe = document.getElementById("myIframe");

// Adjusting the iframe height onload event
iframe.onload = function(){
iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
}