Are you sure you want to cancel your registration?
Cancelling your registration will remove your access to the event. If you proceed, you will no longer be able to participate or access event-related materials.
Are you sure you want to delete account?
Deleting your account will remove your access to the event.
Are you sure you want to change your ticket selection ?
Affini Pay
$(document).ready(function() {
$("#top").click(function() { // When arrow is clicked
$("body,html").animate({
scrollTop: 0 // Scroll to top of body
}, 500);
});
$(window).scroll(function() {
if ($(this).scrollTop() >= 50) { // If page is scrolled more than 50px
$("#top").fadeIn(200); // Fade in the arrow
} else {
$("#top").fadeOut(200); // Else fade out the arrow
}
});
}); var num = 30;
$(window).bind('scroll', function () {
if ($(window).scrollTop() > num) {
$('.sticky').addClass('stickyNav');
} else {
$('.sticky').removeClass('stickyNav');
}
});
$('.navbar-nav>li>a, .navClose').on('click', function(){
$('.navbar-collapse').collapse('hide');
});
$('.slide, .btn-close-access').on('click', function(){
$('#accessibility-fade-in').toggleClass('show');
});