alert()
.sidebar-levels h3 a {
transition: border-color 0.2s ease-in-out;
border: 2px solid #bebebe;
border-radius: 50%;
color: #777777;
display: block;
margin-top: 7px;
text-align: center;
width: 30px;
}
@media screen and (min-width: 1060px) {
.sidebar-levels h3 a {
margin-right: 30px;
}
}
function hello(name) {
if (name.length > 16) {
alert("No!");
} else {
alert("Hi " + name + "!");
}
}
function hello(n){if(n.length>16){alert("No!");}else{alert("Hi "+n+"!");}}