Code Snippets
Load more
{# HTML #}
{% if module.faq|length > module.show_of_default %}
<div id="{{name}}loadMore" class="text-right">
<a href="#" class="btn btn-outline-primary">View All</a>
</div>
{% endif %}
{# CSS #}
{% if module.faq|length > module.show_of_default %}
.sr-faq-01 .faq-item:nth-child(n+{{ module.show_of_default + 1}}) {
display: none;
}
{% endif %}
{# JS #}
{% if module.faq|length > module.show_of_default %}
$(".{{name}} #{{name}}loadMore").on('click', function (e) {
e.preventDefault();
$(".{{name}} .faq-item").slice(0, 99).show();
$(this).remove();
});
{% endif %}URL Parameters
Sending data to a hidden form field
Check if a contact is in a list
Check if there is a contact
Last updated