tupoimudak2,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
var b = $(".circle");
b.on("click",function() {
b.not(this).hide()
})
});
</script>
</head>
<body>
<button class="circle p" >Predators</button>
<button class="circle s" >Shrubs</button>
<button class="circle d" >Donate</button>
<button class="circle t" >Trees</button>
<button class="circle h" >Hebivores</button>
<button class="circle v" >Vacancies</button>
<button class="circle f" >Flowers</button>
<button class="circle w" >Workers</button>
<button class="circle i" >Info</button>
</body>
</html>