<?php if(isset($var)): ?>
<a href="<?php echo $var; ?>">Ссылка</a>
<?php endif; ?>
// Пробуй. тут уже 100% появяться
var collapsibles = $('.collapsible');
for(var i=0; i<collapsibles.length; i++){
el = $(collapsibles[i]);
if($(el.children('table')[0]).height() > el.height()) {
el.append('<a class="show-more" href="#">Show more</a>');
}
};
<!-- Добавь ивент в параметры -->
...
<li><a href="" onclick="openHistoryCard(event, 'history_card_1')">1</a></li>
...
function openHistoryCard(e, cardName) { // принимаем ивент
e.preventDefault(); // запрещаем елементу выполнить стандартное действие
var i;
var x = document.getElementsByClassName("history");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
document.getElementById(cardName).style.display = "block";
}
var options = {
...
pagination: $('.seq-pagination'),
...
};