Hi all I have this script and i want when I click GE show EN and RU,after click EN then show RU and GE only, I want it's happened Toggle times
<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>
Its so easy
<body>
<div class="second">GEO</div>
<div class="second">EN</div>
<div class="second">RU</div>
</body>
// language panel script
<script>
$(".second").click(function(){
$(".second").not(this).fadeToggle();
});
</script>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With