Показать сообщение отдельно
  #1 (permalink)  
Старый 07.12.2019, 13:22
Новичок на форуме
Отправить личное сообщение для kotkotan Посмотреть профиль Найти все сообщения от kotkotan
 
Регистрация: 07.12.2019
Сообщений: 3

Как сделать так, чтобы кнопки не закрывали контент jQuery
Помогите пожалуйста сделать кнопки на сайте (три серые кнопки Visible, GSNDVI и Thermal) так, чтобы они не закрывались при нажатии, чтобы можно было только переключаться между ними и соответствующее окно всегда было бы открытым

Мой код

<script type="text/javascript">
jQuery(document).ready(function() {
// Hide the div
// jQuery('#reveal').hide();
jQuery('.rv_button1').click(function(e){
e.preventDefault();
jQuery("#reveal1").fadeToggle();
// Hide the div
jQuery('#reveal2').hide();
jQuery('#reveal3').hide();
jQuery('#reveal4').hide();
jQuery('#reveal5').hide();
jQuery('.rv_button1').toggleClass('opened closed');
});
});
</script>

<script type="text/javascript">
jQuery(document).ready(function() {
// Hide the div
jQuery('#reveal2').hide();
jQuery('.rv_button2').click(function(e){
e.preventDefault();
jQuery("#reveal2").fadeToggle();
// Hide the div
jQuery('#reveal1').hide();
jQuery('#reveal3').hide();
jQuery('#reveal4').hide();
jQuery('#reveal5').hide();
jQuery('.rv_button2').toggleClass('opened closed');
});
});
</script>

<script type="text/javascript">
jQuery(document).ready(function() {
// Hide the div
jQuery('#reveal3').hide();
jQuery('.rv_button3').click(function(e){
e.preventDefault();
jQuery("#reveal3").fadeToggle();
// Hide the div
jQuery('#reveal1').hide();
jQuery('#reveal2').hide();
jQuery('#reveal4').hide();
jQuery('#reveal5').hide();
jQuery('.rv_button3').toggleClass('opened closed');
});
});
</script>

<script type="text/javascript">
jQuery(document).ready(function() {
// Hide the div
jQuery('#reveal4').hide();
jQuery('.rv_button4').click(function(e){
e.preventDefault();
jQuery("#reveal4").slideToggle();
// Hide the div
jQuery('#reveal1').hide();
jQuery('#reveal2').hide();
jQuery('#reveal3').hide();
jQuery('#reveal5').hide();
jQuery('.rv_button4').toggleClass('opened closed');
});
});
</script>

<script type="text/javascript">
jQuery(document).ready(function() {
// Hide the div
jQuery('#reveal5').hide();
jQuery('.rv_button5').click(function(e){
e.preventDefault();
jQuery("#reveal5").slideToggle();
// Hide the div
jQuery('#reveal1').hide();
jQuery('#reveal2').hide();
jQuery('#reveal3').hide();
jQuery('#reveal4').hide();
jQuery('.rv_button5').toggleClass('opened closed');
});
});
</script>
Ответить с цитированием