Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div style=" height: 200px; width:200px; background-color: black;" 
   onmouseover="displayElement('myDiv');"
   onmouseout="hideElement('myDiv');">
   <div id="myDiv" class="of_expandable" data-channel="2935725596001" data-muted="1" data-skin="dark" style="width:100%; height:100%;display: none; background-color:green;">Content</div>
</div>
</body>
</html>
 
function displayElement(id){
    document.getElementById(id).style.display = 'block';
}
function hideElement(id){
    document.getElementById(id).style.display = 'none';
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers