Try: ca/tecreations/ViewFile.php -- Online
<script>
// these are for if you want to track the download counts.
$('a#tec8_download').attr({target: '_blank', href : 'https://tecreations.ca/ca/tecreations/tec8.jar'});
$('a#tec8_jars_download').attr({target: '_blank',href : 'https://tecreations.ca/ca/tecreations/tec8_jars.jar'});
// these are for if you want to track the data-copy counts.
var ctrlDown = false,
ctrlKey = 17,
cmdKey = 91,
xKey = 88,
vKey = 86,
cKey = 67;
$("#comment").bind('cut', function() {
getCharsRemaining();
});
$("#comment").bind('paste', function() {
getCharsRemaining();
});
</script>
<script>
// for bootstrap 4 submenus
$('.dropdown-menu a.dropdown-toggle').on('click', function(e) {
if (!$(this).next().hasClass('show')) {
$(this).parents('.dropdown-menu').first().find('.show').removeClass('show');
}
var $subMenu = $(this).next('.dropdown-menu');
$subMenu.toggleClass('show');
$(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
$('.dropdown-submenu .show').removeClass('show');
});
return false;
});
</script>