Почему этот Jquery slideToggle не работает на телефоне? - PullRequest
0 голосов
/ 30 ноября 2018

http://lapan.com.ba/denisa-daca-ar-avea-videoclip-original-manele-noi-august-2016/

Jquery is ...

<script type="text/javascript">
jQuery(function($) {
$('.show-hide').click(function(e){
    e.preventDefault();
    $('.entry-content').slideToggle();
    $(this).text( $(this).text() == 'Read More' ? "Show Less" : "Read More");
});
});
</script>

Это кнопка Opis ... 3-й зеленый под видео.

<div class="under-video" style="">
<input style="
    float: right;
    margin: 5px;
    margin-top: 0px;
    cursor: pointer;
    z-index: 100;
    position: relative;"
type="button" value="Opis" class='show-hide' value='hide/show'>...
...