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>
  <select id="perfis" name="test">
        <option>Perfil 1</option>
        <option value="perfil">Perfil 2</option>
    </select>
    
  
    
</body><div id="resumo">Hello world </div>
</html>
 
 document.getElementById('perfis').onchange = function(){
        if (this.value == 'perfil') {
            document.getElementById('resumo').style.display = "block";
        } else {
            document.getElementById('resumo').style.display = "none";
        }
    };
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers