Hi everyone, I have this script, and I want when I press GE show EN and RU after pressing EN, then only RU and GE will be shown. I want this to happen. Switch time
<script>
$(document).ready(function(){
$(".content").click(function(){
});
});
</script>
<style>
.lang1{
display:none;
}
</style>
</head>
<body>
<div class="content">GEO</div>
<div class="lang1">EN</div>
<div class="lang1">RU</div>
</body>
source
share