Notice: Trying to access array offset on value of type null in /home/httpd/vhosts/praids.ru/httpdocs/application/views/index.php on line 159

Notice: Trying to access array offset on value of type null in /home/httpd/vhosts/praids.ru/httpdocs/application/views/index.php on line 159
21.12.2018

Переключение названия кнопки при slideToggle

Дабы сделать переключение названии кнопки при сворачивании/разворачивании меню или блока достаточно использовать такой скрипт:

$('#link').click(function(e){
    e.preventDefault();
    $button = $(this);
    $(this).siblings('.tooltip').slideToggle(function () {
          if ($(this).is(':visible')) $button.text('свернуть');
          else $button.text('подробнее');
     });
});

 

Поделиться: