Есть вот такая кнопка которая открывает часть контента:
После нажатие на plus:
Нужно сделать что бы вторая часть контента была открыта без нажатий на кнопку.
Вот код:
<div class="col-md-2 col-xs-2 share-quiz-more-btn">
<a class="btn btn-block btn-black" href="#">
<span><i class="fa fa-plus"></i></span>
</a>
</div>
<script>
$(function() {
var body = $('body');
var shareButtonsBlocks = $('.sharing-buttons-block');
shareButtonsBlocks.each(function() {
if($(this).data('initiated'))
return;
var shareButtonsBlock = $(this);
$(this).find('.share-quiz-more-btn').click(function(e) {
shareButtonsBlock.toggleClass('show-more');
e.preventDefault();
return false;
});
$(this).data('initiated', true);
});
});
</script>